コード例 #1
0
ファイル: Reference.cs プロジェクト: mnasif786/Business-Safe
 /// <remarks/>
 public void DoesUserExistAsync(string Username, peninsulaDomains Domain) {
     this.DoesUserExistAsync(Username, Domain, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: mnasif786/Business-Safe
 /// <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);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: mnasif786/Business-Safe
 public bool DoesUserExist(string Username, peninsulaDomains Domain) {
     object[] results = this.Invoke("DoesUserExist", new object[] {
                 Username,
                 Domain});
     return ((bool)(results[0]));
 }