Exemplo n.º 1
0
 public BusinessEntity Retrieve(string entityName, Guid id, ColumnSetBase columnSet)
 {
     object[] results = base.Invoke("Retrieve", new object[]
     {
         entityName,
         id,
         columnSet
     });
     return((BusinessEntity)results[0]);
 }
Exemplo n.º 2
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);
 }
Exemplo n.º 3
0
 public void RetrieveAsync(string entityName, Guid id, ColumnSetBase columnSet)
 {
     this.RetrieveAsync(entityName, id, columnSet, null);
 }