Exemplo n.º 1
0
 public string ProcessSimpleAsmxRequestWrapped(SimpleAsmxRequest r)
 {
     object[] results = this.Invoke("ProcessSimpleAsmxRequestWrapped", new object[] {
         r
     });
     return((string)(results[0]));
 }
Exemplo n.º 2
0
        public string ProcessSimpleAsmxRequestBare([System.Xml.Serialization.XmlElementAttribute(Namespace = "http://contoso.com/asmxservice/test")] SimpleAsmxRequest r)
        {
            object[] results = this.Invoke("ProcessSimpleAsmxRequestBare", new object[] {
                r
            });

            return((string)(results[0]));
        }
Exemplo n.º 3
0
 /// <remarks/>
 public void ProcessSimpleAsmxRequestBareAsync(SimpleAsmxRequest r, object userState)
 {
     if ((this.ProcessSimpleAsmxRequestBareOperationCompleted == null))
     {
         this.ProcessSimpleAsmxRequestBareOperationCompleted = new System.Threading.SendOrPostCallback(this.OnProcessSimpleAsmxRequestBareOperationCompleted);
     }
     this.InvokeAsync("ProcessSimpleAsmxRequestBare", new object[] {
         r
     }, this.ProcessSimpleAsmxRequestBareOperationCompleted, userState);
 }
Exemplo n.º 4
0
 /// <remarks/>
 public void ProcessSimpleAsmxRequestWrappedAsync(SimpleAsmxRequest r)
 {
     this.ProcessSimpleAsmxRequestWrappedAsync(r, null);
 }