/// <remarks/> public void AgregarFotoAGaleriaAsync(Foto Foto, int IdPropiedad) { this.AgregarFotoAGaleriaAsync(Foto, IdPropiedad, null); }
/// <remarks/> public void AgregarFotoAGaleriaAsync(Foto Foto, int IdPropiedad, object userState) { if ((this.AgregarFotoAGaleriaOperationCompleted == null)) { this.AgregarFotoAGaleriaOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAgregarFotoAGaleriaOperationCompleted); } this.InvokeAsync("AgregarFotoAGaleria", new object[] { Foto, IdPropiedad}, this.AgregarFotoAGaleriaOperationCompleted, userState); }
public bool AgregarFotoAGaleria(Foto Foto, int IdPropiedad) { object[] results = this.Invoke("AgregarFotoAGaleria", new object[] { Foto, IdPropiedad}); return ((bool)(results[0])); }