public BusinessEntity Retrieve(string entityName, Guid id, ColumnSetBase columnSet) { object[] results = base.Invoke("Retrieve", new object[] { entityName, id, columnSet }); return((BusinessEntity)results[0]); }
public void RetrieveAsync(string entityName, Guid id, ColumnSetBase columnSet, object userState) { if (this.RetrieveOperationCompleted == null) { this.RetrieveOperationCompleted = new SendOrPostCallback(this.OnRetrieveOperationCompleted); } base.InvokeAsync("Retrieve", new object[] { entityName, id, columnSet }, this.RetrieveOperationCompleted, userState); }
public void RetrieveAsync(string entityName, Guid id, ColumnSetBase columnSet) { this.RetrieveAsync(entityName, id, columnSet, null); }