Exemplo n.º 1
0
        public System.Threading.Tasks.Task <DownloadFileStreamedECResponse> DownloadFileStreamedECAsync(string userName, string password, string fileReference, string reportee)
        {
            DownloadFileStreamedECRequest inValue = new DownloadFileStreamedECRequest();

            inValue.Body               = new DownloadFileStreamedECRequestBody();
            inValue.Body.userName      = userName;
            inValue.Body.password      = password;
            inValue.Body.fileReference = fileReference;
            inValue.Body.reportee      = reportee;
            return(((IBrokerServiceExternalECStreamed)(this)).DownloadFileStreamedECAsync(inValue));
        }
Exemplo n.º 2
0
        public byte[] DownloadFileStreamedEC(string userName, string password, string fileReference, string reportee)
        {
            DownloadFileStreamedECRequest inValue = new DownloadFileStreamedECRequest();

            inValue.Body               = new DownloadFileStreamedECRequestBody();
            inValue.Body.userName      = userName;
            inValue.Body.password      = password;
            inValue.Body.fileReference = fileReference;
            inValue.Body.reportee      = reportee;
            DownloadFileStreamedECResponse retVal = ((IBrokerServiceExternalECStreamed)(this)).DownloadFileStreamedEC(inValue);

            return(retVal.Body.DownloadFileStreamedECResult);
        }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <DownloadFileStreamedECResponse> IBrokerServiceExternalECStreamed.DownloadFileStreamedECAsync(DownloadFileStreamedECRequest request)
 {
     return(base.Channel.DownloadFileStreamedECAsync(request));
 }
Exemplo n.º 4
0
 DownloadFileStreamedECResponse IBrokerServiceExternalECStreamed.DownloadFileStreamedEC(DownloadFileStreamedECRequest request)
 {
     return(base.Channel.DownloadFileStreamedEC(request));
 }