@ -23,7 +23,7 @@ namespace WebService.WebReference {
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(Name="JsonServiceSoap", Namespace="http://tempuri.org/")]
@ -31,6 +31,14 @@ namespace WebService.WebReference {
private System . Threading . SendOrPostCallback GetVerOperationCompleted ;
private System . Threading . SendOrPostCallback NewLoginOperationCompleted ;
private System . Threading . SendOrPostCallback AddTmpOperationCompleted ;
private System . Threading . SendOrPostCallback ChangeBkOperationCompleted ;
private System . Threading . SendOrPostCallback WriteLogOperationCompleted ;
private System . Threading . SendOrPostCallback LoginOperationCompleted ;
private System . Threading . SendOrPostCallback LogoutOperationCompleted ;
@ -49,10 +57,22 @@ namespace WebService.WebReference {
private System . Threading . SendOrPostCallback AddDataOperationCompleted ;
private System . Threading . SendOrPostCallback IsExistLocationOperationCompleted ;
private System . Threading . SendOrPostCallback IsExistBarcodeOperationCompleted ;
private System . Threading . SendOrPostCallback UpdateDataOperationCompleted ;
private System . Threading . SendOrPostCallback SaveSeqencingOperationCompleted ;
private System . Threading . SendOrPostCallback AddMesBenzInsertOperationCompleted ;
private System . Threading . SendOrPostCallback GetLuDataByMesOperationCompleted ;
private System . Threading . SendOrPostCallback AddMutualDataOperationCompleted ;
private System . Threading . SendOrPostCallback AddReturnDataOperationCompleted ;
private System . Threading . SendOrPostCallback ReceiveProductsOperationCompleted ;
private bool useDefaultCredentialsSetExplicitly ;
@ -96,6 +116,18 @@ namespace WebService.WebReference {
/// <remarks/>
public event GetVerCompletedEventHandler GetVerCompleted ;
/// <remarks/>
public event NewLoginCompletedEventHandler NewLoginCompleted ;
/// <remarks/>
public event AddTmpCompletedEventHandler AddTmpCompleted ;
/// <remarks/>
public event ChangeBkCompletedEventHandler ChangeBkCompleted ;
/// <remarks/>
public event WriteLogCompletedEventHandler WriteLogCompleted ;
/// <remarks/>
public event LoginCompletedEventHandler LoginCompleted ;
@ -123,12 +155,30 @@ namespace WebService.WebReference {
/// <remarks/>
public event AddDataCompletedEventHandler AddDataCompleted ;
/// <remarks/>
public event IsExistLocationCompletedEventHandler IsExistLocationCompleted ;
/// <remarks/>
public event IsExistBarcodeCompletedEventHandler IsExistBarcodeCompleted ;
/// <remarks/>
public event UpdateDataCompletedEventHandler UpdateDataCompleted ;
/// <remarks/>
public event SaveSeqencingCompletedEventHandler SaveSeqencingCompleted ;
/// <remarks/>
public event AddMesBenzInsertCompletedEventHandler AddMesBenzInsertCompleted ;
/// <remarks/>
public event GetLuDataByMesCompletedEventHandler GetLuDataByMesCompleted ;
/// <remarks/>
public event AddMutualDataCompletedEventHandler AddMutualDataCompleted ;
/// <remarks/>
public event AddReturnDataCompletedEventHandler AddReturnDataCompleted ;
/// <remarks/>
public event ReceiveProductsCompletedEventHandler ReceiveProductsCompleted ;
@ -159,6 +209,136 @@ namespace WebService.WebReference {
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/NewLogin", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string NewLogin ( string operCode , string password , string mac ) {
object [ ] results = this . Invoke ( "NewLogin" , new object [ ] {
operCode ,
password ,
mac } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void NewLoginAsync ( string operCode , string password , string mac ) {
this . NewLoginAsync ( operCode , password , mac , null ) ;
}
/// <remarks/>
public void NewLoginAsync ( string operCode , string password , string mac , object userState ) {
if ( ( this . NewLoginOperationCompleted = = null ) ) {
this . NewLoginOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnNewLoginOperationCompleted ) ;
}
this . InvokeAsync ( "NewLogin" , new object [ ] {
operCode ,
password ,
mac } , this . NewLoginOperationCompleted , userState ) ;
}
private void OnNewLoginOperationCompleted ( object arg ) {
if ( ( this . NewLoginCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . NewLoginCompleted ( this , new NewLoginCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddTmp", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string AddTmp ( string barcode , string partcode ) {
object [ ] results = this . Invoke ( "AddTmp" , new object [ ] {
barcode ,
partcode } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void AddTmpAsync ( string barcode , string partcode ) {
this . AddTmpAsync ( barcode , partcode , null ) ;
}
/// <remarks/>
public void AddTmpAsync ( string barcode , string partcode , object userState ) {
if ( ( this . AddTmpOperationCompleted = = null ) ) {
this . AddTmpOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnAddTmpOperationCompleted ) ;
}
this . InvokeAsync ( "AddTmp" , new object [ ] {
barcode ,
partcode } , this . AddTmpOperationCompleted , userState ) ;
}
private void OnAddTmpOperationCompleted ( object arg ) {
if ( ( this . AddTmpCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . AddTmpCompleted ( this , new AddTmpCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/ChangeBk", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string ChangeBk ( string bkCode , string password , string operCode ) {
object [ ] results = this . Invoke ( "ChangeBk" , new object [ ] {
bkCode ,
password ,
operCode } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void ChangeBkAsync ( string bkCode , string password , string operCode ) {
this . ChangeBkAsync ( bkCode , password , operCode , null ) ;
}
/// <remarks/>
public void ChangeBkAsync ( string bkCode , string password , string operCode , object userState ) {
if ( ( this . ChangeBkOperationCompleted = = null ) ) {
this . ChangeBkOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnChangeBkOperationCompleted ) ;
}
this . InvokeAsync ( "ChangeBk" , new object [ ] {
bkCode ,
password ,
operCode } , this . ChangeBkOperationCompleted , userState ) ;
}
private void OnChangeBkOperationCompleted ( object arg ) {
if ( ( this . ChangeBkCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . ChangeBkCompleted ( this , new ChangeBkCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/WriteLog", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string WriteLog ( string operCode , string function , string message ) {
object [ ] results = this . Invoke ( "WriteLog" , new object [ ] {
operCode ,
function ,
message } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void WriteLogAsync ( string operCode , string function , string message ) {
this . WriteLogAsync ( operCode , function , message , null ) ;
}
/// <remarks/>
public void WriteLogAsync ( string operCode , string function , string message , object userState ) {
if ( ( this . WriteLogOperationCompleted = = null ) ) {
this . WriteLogOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnWriteLogOperationCompleted ) ;
}
this . InvokeAsync ( "WriteLog" , new object [ ] {
operCode ,
function ,
message } , this . WriteLogOperationCompleted , userState ) ;
}
private void OnWriteLogOperationCompleted ( object arg ) {
if ( ( this . WriteLogCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . WriteLogCompleted ( this , new WriteLogCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/Login", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string Login ( string operCode , string password ) {
@ -426,6 +606,64 @@ namespace WebService.WebReference {
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/IsExistLocation", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string IsExistLocation ( string ccode ) {
object [ ] results = this . Invoke ( "IsExistLocation" , new object [ ] {
ccode } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void IsExistLocationAsync ( string ccode ) {
this . IsExistLocationAsync ( ccode , null ) ;
}
/// <remarks/>
public void IsExistLocationAsync ( string ccode , object userState ) {
if ( ( this . IsExistLocationOperationCompleted = = null ) ) {
this . IsExistLocationOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnIsExistLocationOperationCompleted ) ;
}
this . InvokeAsync ( "IsExistLocation" , new object [ ] {
ccode } , this . IsExistLocationOperationCompleted , userState ) ;
}
private void OnIsExistLocationOperationCompleted ( object arg ) {
if ( ( this . IsExistLocationCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . IsExistLocationCompleted ( this , new IsExistLocationCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/IsExistBarcode", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string IsExistBarcode ( string bcode ) {
object [ ] results = this . Invoke ( "IsExistBarcode" , new object [ ] {
bcode } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void IsExistBarcodeAsync ( string bcode ) {
this . IsExistBarcodeAsync ( bcode , null ) ;
}
/// <remarks/>
public void IsExistBarcodeAsync ( string bcode , object userState ) {
if ( ( this . IsExistBarcodeOperationCompleted = = null ) ) {
this . IsExistBarcodeOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnIsExistBarcodeOperationCompleted ) ;
}
this . InvokeAsync ( "IsExistBarcode" , new object [ ] {
bcode } , this . IsExistBarcodeOperationCompleted , userState ) ;
}
private void OnIsExistBarcodeOperationCompleted ( object arg ) {
if ( ( this . IsExistBarcodeCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . IsExistBarcodeCompleted ( this , new IsExistBarcodeCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UpdateData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string UpdateData ( string jsonParam , string strJson ) {
@ -457,6 +695,109 @@ namespace WebService.WebReference {
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/SaveSeqencing", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string SaveSeqencing ( string strJson ) {
object [ ] results = this . Invoke ( "SaveSeqencing" , new object [ ] {
strJson } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void SaveSeqencingAsync ( string strJson ) {
this . SaveSeqencingAsync ( strJson , null ) ;
}
/// <remarks/>
public void SaveSeqencingAsync ( string strJson , object userState ) {
if ( ( this . SaveSeqencingOperationCompleted = = null ) ) {
this . SaveSeqencingOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnSaveSeqencingOperationCompleted ) ;
}
this . InvokeAsync ( "SaveSeqencing" , new object [ ] {
strJson } , this . SaveSeqencingOperationCompleted , userState ) ;
}
private void OnSaveSeqencingOperationCompleted ( object arg ) {
if ( ( this . SaveSeqencingCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . SaveSeqencingCompleted ( this , new SaveSeqencingCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddMesBenzInsert", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string AddMesBenzInsert ( string hannpenLoc , string pPartType , string productionNumber , string pInsertType , string pInsertReason , string pUserID , string pUserName , string fromType ) {
object [ ] results = this . Invoke ( "AddMesBenzInsert" , new object [ ] {
hannpenLoc ,
pPartType ,
productionNumber ,
pInsertType ,
pInsertReason ,
pUserID ,
pUserName ,
fromType } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void AddMesBenzInsertAsync ( string hannpenLoc , string pPartType , string productionNumber , string pInsertType , string pInsertReason , string pUserID , string pUserName , string fromType ) {
this . AddMesBenzInsertAsync ( hannpenLoc , pPartType , productionNumber , pInsertType , pInsertReason , pUserID , pUserName , fromType , null ) ;
}
/// <remarks/>
public void AddMesBenzInsertAsync ( string hannpenLoc , string pPartType , string productionNumber , string pInsertType , string pInsertReason , string pUserID , string pUserName , string fromType , object userState ) {
if ( ( this . AddMesBenzInsertOperationCompleted = = null ) ) {
this . AddMesBenzInsertOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnAddMesBenzInsertOperationCompleted ) ;
}
this . InvokeAsync ( "AddMesBenzInsert" , new object [ ] {
hannpenLoc ,
pPartType ,
productionNumber ,
pInsertType ,
pInsertReason ,
pUserID ,
pUserName ,
fromType } , this . AddMesBenzInsertOperationCompleted , userState ) ;
}
private void OnAddMesBenzInsertOperationCompleted ( object arg ) {
if ( ( this . AddMesBenzInsertCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . AddMesBenzInsertCompleted ( this , new AddMesBenzInsertCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetLuDataByMes", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string GetLuDataByMes ( string productionNumber , string partType ) {
object [ ] results = this . Invoke ( "GetLuDataByMes" , new object [ ] {
productionNumber ,
partType } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void GetLuDataByMesAsync ( string productionNumber , string partType ) {
this . GetLuDataByMesAsync ( productionNumber , partType , null ) ;
}
/// <remarks/>
public void GetLuDataByMesAsync ( string productionNumber , string partType , object userState ) {
if ( ( this . GetLuDataByMesOperationCompleted = = null ) ) {
this . GetLuDataByMesOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnGetLuDataByMesOperationCompleted ) ;
}
this . InvokeAsync ( "GetLuDataByMes" , new object [ ] {
productionNumber ,
partType } , this . GetLuDataByMesOperationCompleted , userState ) ;
}
private void OnGetLuDataByMesOperationCompleted ( object arg ) {
if ( ( this . GetLuDataByMesCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . GetLuDataByMesCompleted ( this , new GetLuDataByMesCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddMutualData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string AddMutualData ( string jsonParam , string strJson ) {
@ -488,6 +829,37 @@ namespace WebService.WebReference {
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddReturnData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string AddReturnData ( string jsonParam , string strJson ) {
object [ ] results = this . Invoke ( "AddReturnData" , new object [ ] {
jsonParam ,
strJson } ) ;
return ( ( string ) ( results [ 0 ] ) ) ;
}
/// <remarks/>
public void AddReturnDataAsync ( string jsonParam , string strJson ) {
this . AddReturnDataAsync ( jsonParam , strJson , null ) ;
}
/// <remarks/>
public void AddReturnDataAsync ( string jsonParam , string strJson , object userState ) {
if ( ( this . AddReturnDataOperationCompleted = = null ) ) {
this . AddReturnDataOperationCompleted = new System . Threading . SendOrPostCallback ( this . OnAddReturnDataOperationCompleted ) ;
}
this . InvokeAsync ( "AddReturnData" , new object [ ] {
jsonParam ,
strJson } , this . AddReturnDataOperationCompleted , userState ) ;
}
private void OnAddReturnDataOperationCompleted ( object arg ) {
if ( ( this . AddReturnDataCompleted ! = null ) ) {
System . Web . Services . Protocols . InvokeCompletedEventArgs invokeArgs = ( ( System . Web . Services . Protocols . InvokeCompletedEventArgs ) ( arg ) ) ;
this . AddReturnDataCompleted ( this , new AddReturnDataCompletedEventArgs ( invokeArgs . Results , invokeArgs . Error , invokeArgs . Cancelled , invokeArgs . UserState ) ) ;
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/ReceiveProducts", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public string ReceiveProducts ( string jsonParam ) {
@ -537,11 +909,11 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
public delegate void GetVerCompletedEventHandler ( object sender , GetVerCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class GetVerCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -563,11 +935,115 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void NewLoginCompletedEventHandler ( object sender , NewLoginCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class NewLoginCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal NewLoginCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void AddTmpCompletedEventHandler ( object sender , AddTmpCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class AddTmpCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal AddTmpCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void ChangeBkCompletedEventHandler ( object sender , ChangeBkCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class ChangeBkCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal ChangeBkCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void WriteLogCompletedEventHandler ( object sender , WriteLogCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class WriteLogCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal WriteLogCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void LoginCompletedEventHandler ( object sender , LoginCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class LoginCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -589,11 +1065,11 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
public delegate void LogoutCompletedEventHandler ( object sender , LogoutCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class LogoutCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -615,11 +1091,11 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
public delegate void ModifyPasswordCompletedEventHandler ( object sender , ModifyPasswordCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class ModifyPasswordCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -641,11 +1117,11 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
public delegate void GetServerTimeCompletedEventHandler ( object sender , GetServerTimeCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class GetServerTimeCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -667,11 +1143,11 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
public delegate void DecryptCompletedEventHandler ( object sender , DecryptCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class DecryptCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -693,11 +1169,11 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
public delegate void EncryptCompletedEventHandler ( object sender , EncryptCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class EncryptCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -719,11 +1195,11 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
public delegate void GetCountCompletedEventHandler ( object sender , GetCountCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class GetCountCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -745,11 +1221,11 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
public delegate void GetDataCompletedEventHandler ( object sender , GetDataCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class GetDataCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -771,11 +1247,11 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
public delegate void AddDataCompletedEventHandler ( object sender , AddDataCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056 .0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class AddDataCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -797,11 +1273,63 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void IsExistLocationCompletedEventHandler ( object sender , IsExistLocationCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class IsExistLocationCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal IsExistLocationCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void IsExistBarcodeCompletedEventHandler ( object sender , IsExistBarcodeCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class IsExistBarcodeCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal IsExistBarcodeCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void UpdateDataCompletedEventHandler ( object sender , UpdateDataCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class UpdateDataCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -823,11 +1351,89 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void SaveSeqencingCompletedEventHandler ( object sender , SaveSeqencingCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class SaveSeqencingCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal SaveSeqencingCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void AddMesBenzInsertCompletedEventHandler ( object sender , AddMesBenzInsertCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class AddMesBenzInsertCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal AddMesBenzInsertCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void GetLuDataByMesCompletedEventHandler ( object sender , GetLuDataByMesCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class GetLuDataByMesCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal GetLuDataByMesCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void AddMutualDataCompletedEventHandler ( object sender , AddMutualDataCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class AddMutualDataCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
@ -849,11 +1455,37 @@ namespace WebService.WebReference {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void AddReturnDataCompletedEventHandler ( object sender , AddReturnDataCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class AddReturnDataCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {
private object [ ] results ;
internal AddReturnDataCompletedEventArgs ( 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 ] ) ) ;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
public delegate void ReceiveProductsCompletedEventHandler ( object sender , ReceiveProductsCompletedEventArgs e ) ;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.3056.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032 .0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class ReceiveProductsCompletedEventArgs : System . ComponentModel . AsyncCompletedEventArgs {