public Informacao TesteInformacao([System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] Informacao Info) { object[] results = this.Invoke("TesteInformacao", new object[] { Info }); return((Informacao)(results[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); }
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); }
/// <remarks/> public void TesteInformacaoAsync(Informacao Info) { this.TesteInformacaoAsync(Info, null); }