コード例 #1
0
ファイル: Reference.cs プロジェクト: MotiElbaz/Mini-Torrent
 public System.Threading.Tasks.Task <Test.Mediation.logoutResponse> logoutAsync(string data)
 {
     Test.Mediation.logoutRequest inValue = new Test.Mediation.logoutRequest();
     inValue.Body      = new Test.Mediation.logoutRequestBody();
     inValue.Body.data = data;
     return(((Test.Mediation.MediationSoap)(this)).logoutAsync(inValue));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: MotiElbaz/Mini-Torrent
 public string logout(string data)
 {
     Test.Mediation.logoutRequest inValue = new Test.Mediation.logoutRequest();
     inValue.Body      = new Test.Mediation.logoutRequestBody();
     inValue.Body.data = data;
     Test.Mediation.logoutResponse retVal = ((Test.Mediation.MediationSoap)(this)).logout(inValue);
     return(retVal.Body.logoutResult);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: MotiElbaz/Mini-Torrent
 System.Threading.Tasks.Task <Test.Mediation.logoutResponse> Test.Mediation.MediationSoap.logoutAsync(Test.Mediation.logoutRequest request)
 {
     return(base.Channel.logoutAsync(request));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: MotiElbaz/Mini-Torrent
 Test.Mediation.logoutResponse Test.Mediation.MediationSoap.logout(Test.Mediation.logoutRequest request)
 {
     return(base.Channel.logout(request));
 }