Ejemplo n.º 1
0
        public Informacao TesteInformacao([System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] Informacao Info)
        {
            object[] results = this.Invoke("TesteInformacao", new object[] {
                Info
            });

            return((Informacao)(results[0]));
        }
Ejemplo n.º 2
0
 /// <remarks/>
 public void TesteInformacaoAsync(Informacao Info, object userState)
 {
     if ((this.TesteInformacaoOperationCompleted == null))
     {
         this.TesteInformacaoOperationCompleted = new System.Threading.SendOrPostCallback(this.OnTesteInformacaoOperationCompleted);
     }
     this.InvokeAsync("TesteInformacao", new object[] {
         Info
     }, this.TesteInformacaoOperationCompleted, userState);
 }
Ejemplo n.º 3
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.Main);

            WS.Service S = new WS.Service();

            String RET = S.TesteDados(3, true);

            WS.Informacao INF = new WS.Informacao();
            INF.Ativo          = true;
            INF.AtivoSpecified = true;
            INF.Nome           = "Xamarin";

            S.TesteInformacaoCompleted += S_TesteInformacaoCompleted;
            S.TesteInformacaoAsync(INF);
        }
Ejemplo n.º 4
0
 /// <remarks/>
 public void TesteInformacaoAsync(Informacao Info)
 {
     this.TesteInformacaoAsync(Info, null);
 }