Ejemplo n.º 1
0
 /// <remarks/>
 public void DoesUserExistAsync(string Username, peninsulaDomains Domain) {
     this.DoesUserExistAsync(Username, Domain, null);
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void DoesUserExistAsync(string Username, peninsulaDomains Domain, object userState) {
     if ((this.DoesUserExistOperationCompleted == null)) {
         this.DoesUserExistOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDoesUserExistOperationCompleted);
     }
     this.InvokeAsync("DoesUserExist", new object[] {
                 Username,
                 Domain}, this.DoesUserExistOperationCompleted, userState);
 }
Ejemplo n.º 3
0
 public bool DoesUserExist(string Username, peninsulaDomains Domain) {
     object[] results = this.Invoke("DoesUserExist", new object[] {
                 Username,
                 Domain});
     return ((bool)(results[0]));
 }