From 860f743dd7c6fa5e481911db608e09a4acdab30e Mon Sep 17 00:00:00 2001 From: dnobori Date: Fri, 17 Jul 2015 00:31:57 +0900 Subject: v4.17-9566-beta --- .../Web References/HvSignService/Reference.cs | 84 +++++++++++++++++++--- .../Web References/HvSignService/Sign.wsdl | 46 ++++++++++++ 2 files changed, 122 insertions(+), 8 deletions(-) (limited to 'src/BuildUtil/Web References') diff --git a/src/BuildUtil/Web References/HvSignService/Reference.cs b/src/BuildUtil/Web References/HvSignService/Reference.cs index 1d599164..2d5056c2 100644 --- a/src/BuildUtil/Web References/HvSignService/Reference.cs +++ b/src/BuildUtil/Web References/HvSignService/Reference.cs @@ -1,7 +1,7 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // このコードはツールによって生成されました。 -// ランタイム バージョン: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 { /// - [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; /// @@ -172,6 +174,9 @@ namespace BuildUtil.HvSignService { /// public event ExecSignCompletedEventHandler ExecSignCompleted; + /// + public event ExecSignExCompletedEventHandler ExecSignExCompleted; + /// [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 { } } + /// + [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])); + } + + /// + 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); + } + + /// + 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)); + } + } + /// public new void CancelAsync(object userState) { base.CancelAsync(userState); @@ -254,11 +296,11 @@ namespace BuildUtil.HvSignService { } /// - [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); /// - [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 { } /// - [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); /// - [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 { } } } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.5483")] + public delegate void ExecSignExCompletedEventHandler(object sender, ExecSignExCompletedEventArgs e); + + /// + [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; + } + + /// + public string Result { + get { + this.RaiseExceptionIfNecessary(); + return ((string)(this.results[0])); + } + } + } } #pragma warning restore 1591 diff --git a/src/BuildUtil/Web References/HvSignService/Sign.wsdl b/src/BuildUtil/Web References/HvSignService/Sign.wsdl index 4a6f0777..6657499e 100644 --- a/src/BuildUtil/Web References/HvSignService/Sign.wsdl +++ b/src/BuildUtil/Web References/HvSignService/Sign.wsdl @@ -29,6 +29,24 @@ + + + + + + + + + + + + + + + + + + @@ -43,6 +61,12 @@ + + + + + + @@ -52,6 +76,10 @@ + + + + @@ -73,6 +101,15 @@ + + + + + + + + + @@ -94,6 +131,15 @@ + + + + + + + + + -- cgit v1.2.3