|
@@ -1,7 +1,7 @@
|
|
|
-//------------------------------------------------------------------------------
|
|
|
+//------------------------------------------------------------------------------
|
|
|
// <auto-generated>
|
|
|
// このコードはツールによって生成されました。
|
|
|
-// ランタイム バージョン:2.0.50727.5466
|
|
|
+// ランタイム バージョン:2.0.50727.5485
|
|
|
//
|
|
|
// このファイルへの変更は、以下の状況下で不正な動作の原因になったり、
|
|
|
// コードが再生成されるときに損失したりします。
|
|
@@ -104,7 +104,7 @@
|
|
|
|
|
|
|
|
|
//
|
|
|
-// このソース コードは Microsoft.VSDesigner、バージョン 2.0.50727.5466 によって自動生成されました。
|
|
|
+// このソース コードは Microsoft.VSDesigner、バージョン 2.0.50727.5485 によって自動生成されました。
|
|
|
//
|
|
|
#pragma warning disable 1591
|
|
|
|
|
@@ -118,7 +118,7 @@ namespace BuildUtil.HvSignService {
|
|
|
|
|
|
|
|
|
/// <remarks/>
|
|
|
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5420")]
|
|
|
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5483")]
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
|
[System.Web.Services.WebServiceBindingAttribute(Name="SignSoap", Namespace="http://hvsigncode/")]
|
|
@@ -128,6 +128,8 @@ namespace BuildUtil.HvSignService {
|
|
|
|
|
|
private System.Threading.SendOrPostCallback ExecSignOperationCompleted;
|
|
|
|
|
|
+ private System.Threading.SendOrPostCallback ExecSignExOperationCompleted;
|
|
|
+
|
|
|
private bool useDefaultCredentialsSetExplicitly;
|
|
|
|
|
|
/// <remarks/>
|
|
@@ -172,6 +174,9 @@ namespace BuildUtil.HvSignService {
|
|
|
/// <remarks/>
|
|
|
public event ExecSignCompletedEventHandler ExecSignCompleted;
|
|
|
|
|
|
+ /// <remarks/>
|
|
|
+ public event ExecSignExCompletedEventHandler ExecSignExCompleted;
|
|
|
+
|
|
|
/// <remarks/>
|
|
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://hvsigncode/HelloWorld", RequestNamespace="http://hvsigncode/", ResponseNamespace="http://hvsigncode/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
|
|
|
public string HelloWorld() {
|
|
@@ -234,6 +239,43 @@ namespace BuildUtil.HvSignService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /// <remarks/>
|
|
|
+ [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://hvsigncode/ExecSignEx", RequestNamespace="http://hvsigncode/", ResponseNamespace="http://hvsigncode/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
|
|
|
+ public string ExecSignEx(string src_filename, bool driver_mode, string description, int cert_id, int sha_mode) {
|
|
|
+ object[] results = this.Invoke("ExecSignEx", new object[] {
|
|
|
+ src_filename,
|
|
|
+ driver_mode,
|
|
|
+ description,
|
|
|
+ cert_id,
|
|
|
+ sha_mode});
|
|
|
+ return ((string)(results[0]));
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <remarks/>
|
|
|
+ public void ExecSignExAsync(string src_filename, bool driver_mode, string description, int cert_id, int sha_mode) {
|
|
|
+ this.ExecSignExAsync(src_filename, driver_mode, description, cert_id, sha_mode, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <remarks/>
|
|
|
+ public void ExecSignExAsync(string src_filename, bool driver_mode, string description, int cert_id, int sha_mode, object userState) {
|
|
|
+ if ((this.ExecSignExOperationCompleted == null)) {
|
|
|
+ this.ExecSignExOperationCompleted = new System.Threading.SendOrPostCallback(this.OnExecSignExOperationCompleted);
|
|
|
+ }
|
|
|
+ this.InvokeAsync("ExecSignEx", new object[] {
|
|
|
+ src_filename,
|
|
|
+ driver_mode,
|
|
|
+ description,
|
|
|
+ cert_id,
|
|
|
+ sha_mode}, this.ExecSignExOperationCompleted, userState);
|
|
|
+ }
|
|
|
+
|
|
|
+ private void OnExecSignExOperationCompleted(object arg) {
|
|
|
+ if ((this.ExecSignExCompleted != null)) {
|
|
|
+ System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
|
|
|
+ this.ExecSignExCompleted(this, new ExecSignExCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
/// <remarks/>
|
|
|
public new void CancelAsync(object userState) {
|
|
|
base.CancelAsync(userState);
|
|
@@ -254,11 +296,11 @@ namespace BuildUtil.HvSignService {
|
|
|
}
|
|
|
|
|
|
/// <remarks/>
|
|
|
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5420")]
|
|
|
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5483")]
|
|
|
public delegate void HelloWorldCompletedEventHandler(object sender, HelloWorldCompletedEventArgs e);
|
|
|
|
|
|
/// <remarks/>
|
|
|
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5420")]
|
|
|
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5483")]
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
|
public partial class HelloWorldCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
|
|
@@ -280,11 +322,11 @@ namespace BuildUtil.HvSignService {
|
|
|
}
|
|
|
|
|
|
/// <remarks/>
|
|
|
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5420")]
|
|
|
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5483")]
|
|
|
public delegate void ExecSignCompletedEventHandler(object sender, ExecSignCompletedEventArgs e);
|
|
|
|
|
|
/// <remarks/>
|
|
|
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5420")]
|
|
|
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5483")]
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
|
public partial class ExecSignCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
|
|
@@ -304,6 +346,32 @@ namespace BuildUtil.HvSignService {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /// <remarks/>
|
|
|
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5483")]
|
|
|
+ public delegate void ExecSignExCompletedEventHandler(object sender, ExecSignExCompletedEventArgs e);
|
|
|
+
|
|
|
+ /// <remarks/>
|
|
|
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5483")]
|
|
|
+ [System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
|
+ [System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
|
+ public partial class ExecSignExCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
|
|
|
+
|
|
|
+ private object[] results;
|
|
|
+
|
|
|
+ internal ExecSignExCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
|
|
|
+ base(exception, cancelled, userState) {
|
|
|
+ this.results = results;
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <remarks/>
|
|
|
+ public string Result {
|
|
|
+ get {
|
|
|
+ this.RaiseExceptionIfNecessary();
|
|
|
+ return ((string)(this.results[0]));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
#pragma warning restore 1591
|