示例#1
0
 public System.Threading.Tasks.Task <ClientWCF.ComService.checkFileOperationResponse> checkFileOperationAsync(string fileName, string fileContent, string cypherKey)
 {
     ClientWCF.ComService.checkFileOperationRequest inValue = new ClientWCF.ComService.checkFileOperationRequest();
     inValue.Body             = new ClientWCF.ComService.checkFileOperationRequestBody();
     inValue.Body.fileName    = fileName;
     inValue.Body.fileContent = fileContent;
     inValue.Body.cypherKey   = cypherKey;
     return(((ClientWCF.ComService.ComEndpoint)(this)).checkFileOperationAsync(inValue));
 }
示例#2
0
 public string checkFileOperation(string fileName, string fileContent, string cypherKey)
 {
     ClientWCF.ComService.checkFileOperationRequest inValue = new ClientWCF.ComService.checkFileOperationRequest();
     inValue.Body             = new ClientWCF.ComService.checkFileOperationRequestBody();
     inValue.Body.fileName    = fileName;
     inValue.Body.fileContent = fileContent;
     inValue.Body.cypherKey   = cypherKey;
     ClientWCF.ComService.checkFileOperationResponse retVal = ((ClientWCF.ComService.ComEndpoint)(this)).checkFileOperation(inValue);
     return(retVal.Body.operationResult);
 }
示例#3
0
 System.Threading.Tasks.Task <ClientWCF.ComService.checkFileOperationResponse> ClientWCF.ComService.ComEndpoint.checkFileOperationAsync(ClientWCF.ComService.checkFileOperationRequest request)
 {
     return(base.Channel.checkFileOperationAsync(request));
 }
示例#4
0
 ClientWCF.ComService.checkFileOperationResponse ClientWCF.ComService.ComEndpoint.checkFileOperation(ClientWCF.ComService.checkFileOperationRequest request)
 {
     return(base.Channel.checkFileOperation(request));
 }