/// <remarks/> public void FindByIDAsync(FindByIDSpecification specification) { this.FindByIDAsync(specification, null); }
/// <remarks/> public void FindByIDAsync(FindByIDSpecification specification, object userState) { if ((this.FindByIDOperationCompleted == null)) { this.FindByIDOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFindByIDOperationCompleted); } this.InvokeAsync("FindByID", new object[] { specification}, this.FindByIDOperationCompleted, userState); }
public FindResults FindByID(FindByIDSpecification specification) { object[] results = this.Invoke("FindByID", new object[] { specification}); return ((FindResults)(results[0])); }