예제 #1
0
 public IAsyncResult BeginCheckIfUserExists(CheckIfUserExistsRequest request, AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = request;
     return((IAsyncResult)base.BeginInvoke("CheckIfUserExists", _args, callback, asyncState));
 }
예제 #2
0
 public CommandResult<bool> UserExists(CheckIfUserExistsRequest checkIfUserExistsRequest)
 {
     return _checkIfUserExistsCommand.ExecuteRequest(checkIfUserExistsRequest);
 }
예제 #3
0
 public CheckIfUserExistsResponse CheckIfUserExists(CheckIfUserExistsRequest request)
 {
     throw new NotImplementedException();
 }