개정판 f1f822e9
issue #00000 svg 기능 수정
Change-Id: Ic1575964db1f861ca637c7073dfa382fee4bbcd4
KCOM/Web References/kr.co.devdoftech.cloud/Reference.cs | ||
---|---|---|
23 | 23 |
|
24 | 24 |
|
25 | 25 |
/// <remarks/> |
26 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")]
|
|
26 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")]
|
|
27 | 27 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
28 | 28 |
[System.ComponentModel.DesignerCategoryAttribute("code")] |
29 | 29 |
[System.Web.Services.WebServiceBindingAttribute(Name="FileUploadSoap", Namespace="http://tempuri.org/")] |
... | ... | |
31 | 31 |
|
32 | 32 |
private System.Threading.SendOrPostCallback RunOperationCompleted; |
33 | 33 |
|
34 |
private System.Threading.SendOrPostCallback RunSymbolOperationCompleted; |
|
35 |
|
|
36 |
private System.Threading.SendOrPostCallback ServerMapPathTestOperationCompleted; |
|
37 |
|
|
38 |
private System.Threading.SendOrPostCallback SymbolRegenOperationCompleted; |
|
39 |
|
|
34 | 40 |
private bool useDefaultCredentialsSetExplicitly; |
35 | 41 |
|
36 | 42 |
/// <remarks/> |
... | ... | |
73 | 79 |
public event RunCompletedEventHandler RunCompleted; |
74 | 80 |
|
75 | 81 |
/// <remarks/> |
82 |
public event RunSymbolCompletedEventHandler RunSymbolCompleted; |
|
83 |
|
|
84 |
/// <remarks/> |
|
85 |
public event ServerMapPathTestCompletedEventHandler ServerMapPathTestCompleted; |
|
86 |
|
|
87 |
/// <remarks/> |
|
88 |
public event SymbolRegenCompletedEventHandler SymbolRegenCompleted; |
|
89 |
|
|
90 |
/// <remarks/> |
|
76 | 91 |
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/Run", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
77 | 92 |
public string Run(string ProjectNo, string VPNo, string UserID, string FileName, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] byte[] f) { |
78 | 93 |
object[] results = this.Invoke("Run", new object[] { |
... | ... | |
110 | 125 |
} |
111 | 126 |
|
112 | 127 |
/// <remarks/> |
128 |
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/RunSymbol", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
|
129 |
public string RunSymbol(string ProjectNo, string VPNo, string UserID, string FileName, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] byte[] f) { |
|
130 |
object[] results = this.Invoke("RunSymbol", new object[] { |
|
131 |
ProjectNo, |
|
132 |
VPNo, |
|
133 |
UserID, |
|
134 |
FileName, |
|
135 |
f}); |
|
136 |
return ((string)(results[0])); |
|
137 |
} |
|
138 |
|
|
139 |
/// <remarks/> |
|
140 |
public void RunSymbolAsync(string ProjectNo, string VPNo, string UserID, string FileName, byte[] f) { |
|
141 |
this.RunSymbolAsync(ProjectNo, VPNo, UserID, FileName, f, null); |
|
142 |
} |
|
143 |
|
|
144 |
/// <remarks/> |
|
145 |
public void RunSymbolAsync(string ProjectNo, string VPNo, string UserID, string FileName, byte[] f, object userState) { |
|
146 |
if ((this.RunSymbolOperationCompleted == null)) { |
|
147 |
this.RunSymbolOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRunSymbolOperationCompleted); |
|
148 |
} |
|
149 |
this.InvokeAsync("RunSymbol", new object[] { |
|
150 |
ProjectNo, |
|
151 |
VPNo, |
|
152 |
UserID, |
|
153 |
FileName, |
|
154 |
f}, this.RunSymbolOperationCompleted, userState); |
|
155 |
} |
|
156 |
|
|
157 |
private void OnRunSymbolOperationCompleted(object arg) { |
|
158 |
if ((this.RunSymbolCompleted != null)) { |
|
159 |
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
|
160 |
this.RunSymbolCompleted(this, new RunSymbolCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
|
161 |
} |
|
162 |
} |
|
163 |
|
|
164 |
/// <remarks/> |
|
165 |
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/ServerMapPathTest", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
|
166 |
public string ServerMapPathTest(string uri) { |
|
167 |
object[] results = this.Invoke("ServerMapPathTest", new object[] { |
|
168 |
uri}); |
|
169 |
return ((string)(results[0])); |
|
170 |
} |
|
171 |
|
|
172 |
/// <remarks/> |
|
173 |
public void ServerMapPathTestAsync(string uri) { |
|
174 |
this.ServerMapPathTestAsync(uri, null); |
|
175 |
} |
|
176 |
|
|
177 |
/// <remarks/> |
|
178 |
public void ServerMapPathTestAsync(string uri, object userState) { |
|
179 |
if ((this.ServerMapPathTestOperationCompleted == null)) { |
|
180 |
this.ServerMapPathTestOperationCompleted = new System.Threading.SendOrPostCallback(this.OnServerMapPathTestOperationCompleted); |
|
181 |
} |
|
182 |
this.InvokeAsync("ServerMapPathTest", new object[] { |
|
183 |
uri}, this.ServerMapPathTestOperationCompleted, userState); |
|
184 |
} |
|
185 |
|
|
186 |
private void OnServerMapPathTestOperationCompleted(object arg) { |
|
187 |
if ((this.ServerMapPathTestCompleted != null)) { |
|
188 |
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
|
189 |
this.ServerMapPathTestCompleted(this, new ServerMapPathTestCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
|
190 |
} |
|
191 |
} |
|
192 |
|
|
193 |
/// <remarks/> |
|
194 |
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/SymbolRegen", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
|
195 |
public string SymbolRegen() { |
|
196 |
object[] results = this.Invoke("SymbolRegen", new object[0]); |
|
197 |
return ((string)(results[0])); |
|
198 |
} |
|
199 |
|
|
200 |
/// <remarks/> |
|
201 |
public void SymbolRegenAsync() { |
|
202 |
this.SymbolRegenAsync(null); |
|
203 |
} |
|
204 |
|
|
205 |
/// <remarks/> |
|
206 |
public void SymbolRegenAsync(object userState) { |
|
207 |
if ((this.SymbolRegenOperationCompleted == null)) { |
|
208 |
this.SymbolRegenOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSymbolRegenOperationCompleted); |
|
209 |
} |
|
210 |
this.InvokeAsync("SymbolRegen", new object[0], this.SymbolRegenOperationCompleted, userState); |
|
211 |
} |
|
212 |
|
|
213 |
private void OnSymbolRegenOperationCompleted(object arg) { |
|
214 |
if ((this.SymbolRegenCompleted != null)) { |
|
215 |
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
|
216 |
this.SymbolRegenCompleted(this, new SymbolRegenCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
|
217 |
} |
|
218 |
} |
|
219 |
|
|
220 |
/// <remarks/> |
|
113 | 221 |
public new void CancelAsync(object userState) { |
114 | 222 |
base.CancelAsync(userState); |
115 | 223 |
} |
... | ... | |
129 | 237 |
} |
130 | 238 |
|
131 | 239 |
/// <remarks/> |
132 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")]
|
|
240 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")]
|
|
133 | 241 |
public delegate void RunCompletedEventHandler(object sender, RunCompletedEventArgs e); |
134 | 242 |
|
135 | 243 |
/// <remarks/> |
136 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.3752.0")]
|
|
244 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")]
|
|
137 | 245 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
138 | 246 |
[System.ComponentModel.DesignerCategoryAttribute("code")] |
139 | 247 |
public partial class RunCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
... | ... | |
153 | 261 |
} |
154 | 262 |
} |
155 | 263 |
} |
264 |
|
|
265 |
/// <remarks/> |
|
266 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
|
267 |
public delegate void RunSymbolCompletedEventHandler(object sender, RunSymbolCompletedEventArgs e); |
|
268 |
|
|
269 |
/// <remarks/> |
|
270 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
|
271 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
272 |
[System.ComponentModel.DesignerCategoryAttribute("code")] |
|
273 |
public partial class RunSymbolCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
|
274 |
|
|
275 |
private object[] results; |
|
276 |
|
|
277 |
internal RunSymbolCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
|
278 |
base(exception, cancelled, userState) { |
|
279 |
this.results = results; |
|
280 |
} |
|
281 |
|
|
282 |
/// <remarks/> |
|
283 |
public string Result { |
|
284 |
get { |
|
285 |
this.RaiseExceptionIfNecessary(); |
|
286 |
return ((string)(this.results[0])); |
|
287 |
} |
|
288 |
} |
|
289 |
} |
|
290 |
|
|
291 |
/// <remarks/> |
|
292 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
|
293 |
public delegate void ServerMapPathTestCompletedEventHandler(object sender, ServerMapPathTestCompletedEventArgs e); |
|
294 |
|
|
295 |
/// <remarks/> |
|
296 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
|
297 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
298 |
[System.ComponentModel.DesignerCategoryAttribute("code")] |
|
299 |
public partial class ServerMapPathTestCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
|
300 |
|
|
301 |
private object[] results; |
|
302 |
|
|
303 |
internal ServerMapPathTestCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
|
304 |
base(exception, cancelled, userState) { |
|
305 |
this.results = results; |
|
306 |
} |
|
307 |
|
|
308 |
/// <remarks/> |
|
309 |
public string Result { |
|
310 |
get { |
|
311 |
this.RaiseExceptionIfNecessary(); |
|
312 |
return ((string)(this.results[0])); |
|
313 |
} |
|
314 |
} |
|
315 |
} |
|
316 |
|
|
317 |
/// <remarks/> |
|
318 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
|
319 |
public delegate void SymbolRegenCompletedEventHandler(object sender, SymbolRegenCompletedEventArgs e); |
|
320 |
|
|
321 |
/// <remarks/> |
|
322 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
|
323 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
324 |
[System.ComponentModel.DesignerCategoryAttribute("code")] |
|
325 |
public partial class SymbolRegenCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
|
326 |
|
|
327 |
private object[] results; |
|
328 |
|
|
329 |
internal SymbolRegenCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
|
330 |
base(exception, cancelled, userState) { |
|
331 |
this.results = results; |
|
332 |
} |
|
333 |
|
|
334 |
/// <remarks/> |
|
335 |
public string Result { |
|
336 |
get { |
|
337 |
this.RaiseExceptionIfNecessary(); |
|
338 |
return ((string)(this.results[0])); |
|
339 |
} |
|
340 |
} |
|
341 |
} |
|
156 | 342 |
} |
157 | 343 |
|
158 | 344 |
#pragma warning restore 1591 |
내보내기 Unified diff