/// <remarks/> public void IdentitySearchAsync(string StrKey, IdentitySearchOptions idOptions, LimitsType limits) { this.IdentitySearchAsync(StrKey, idOptions, limits, null); }
/// <remarks/> public void IdentitySearchAsync(string StrKey, IdentitySearchOptions idOptions, LimitsType limits, object userState) { if ((this.IdentitySearchOperationCompleted == null)) { this.IdentitySearchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnIdentitySearchOperationCompleted); } this.InvokeAsync("IdentitySearch", new object[] { StrKey, idOptions, limits}, this.IdentitySearchOperationCompleted, userState); }
public string IdentitySearch(string StrKey, IdentitySearchOptions idOptions, LimitsType limits) { object[] results = this.Invoke("IdentitySearch", new object[] { StrKey, idOptions, limits}); return ((string)(results[0])); }