コード例 #1
0
ファイル: Reference.cs プロジェクト: tomshag/ec-client-dotnet
        public System.Threading.Tasks.Task <SendStandaloneNotificationECResponse> SendStandaloneNotificationECAsync(string systemUserName, string systemPassword, StandaloneNotificationBEList standaloneNotifications)
        {
            SendStandaloneNotificationECRequest inValue = new SendStandaloneNotificationECRequest();

            inValue.Body = new SendStandaloneNotificationECRequestBody();
            inValue.Body.systemUserName          = systemUserName;
            inValue.Body.systemPassword          = systemPassword;
            inValue.Body.standaloneNotifications = standaloneNotifications;
            return(((INotificationAgencyExternalEC)(this)).SendStandaloneNotificationECAsync(inValue));
        }
コード例 #2
0
ファイル: Reference.cs プロジェクト: tomshag/ec-client-dotnet
        public void SendStandaloneNotificationEC(string systemUserName, string systemPassword, StandaloneNotificationBEList standaloneNotifications)
        {
            SendStandaloneNotificationECRequest inValue = new SendStandaloneNotificationECRequest();

            inValue.Body = new SendStandaloneNotificationECRequestBody();
            inValue.Body.systemUserName          = systemUserName;
            inValue.Body.systemPassword          = systemPassword;
            inValue.Body.standaloneNotifications = standaloneNotifications;
            SendStandaloneNotificationECResponse retVal = ((INotificationAgencyExternalEC)(this)).SendStandaloneNotificationEC(inValue);
        }
コード例 #3
0
ファイル: Reference.cs プロジェクト: tomshag/ec-client-dotnet
 System.Threading.Tasks.Task <SendStandaloneNotificationECResponse> INotificationAgencyExternalEC.SendStandaloneNotificationECAsync(SendStandaloneNotificationECRequest request)
 {
     return(base.Channel.SendStandaloneNotificationECAsync(request));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: tomshag/ec-client-dotnet
 SendStandaloneNotificationECResponse INotificationAgencyExternalEC.SendStandaloneNotificationEC(SendStandaloneNotificationECRequest request)
 {
     return(base.Channel.SendStandaloneNotificationEC(request));
 }