Exemplo n.º 1
0
 public System.Threading.Tasks.Task <AppClient.AppGetUsers.GetUsersResponse> GetUsersAsync(string protocolVersion, string id, string userId, AppClient.AppGetUsers.XRoadServiceIdentifierType service, AppClient.AppGetUsers.XRoadClientIdentifierType client)
 {
     AppClient.AppGetUsers.GetUsersRequest inValue = new AppClient.AppGetUsers.GetUsersRequest();
     inValue.protocolVersion = protocolVersion;
     inValue.id      = id;
     inValue.userId  = userId;
     inValue.service = service;
     inValue.client  = client;
     return(((AppClient.AppGetUsers.IAppService)(this)).GetUsersAsync(inValue));
 }
Exemplo n.º 2
0
 public AppClient.AppGetUsers.AppUser[] GetUsers(ref string protocolVersion, ref string id, ref string userId, ref AppClient.AppGetUsers.XRoadServiceIdentifierType service, ref AppClient.AppGetUsers.XRoadClientIdentifierType client)
 {
     AppClient.AppGetUsers.GetUsersRequest inValue = new AppClient.AppGetUsers.GetUsersRequest();
     inValue.protocolVersion = protocolVersion;
     inValue.id      = id;
     inValue.userId  = userId;
     inValue.service = service;
     inValue.client  = client;
     AppClient.AppGetUsers.GetUsersResponse retVal = ((AppClient.AppGetUsers.IAppService)(this)).GetUsers(inValue);
     protocolVersion = retVal.protocolVersion;
     id      = retVal.id;
     userId  = retVal.userId;
     service = retVal.service;
     client  = retVal.client;
     return(retVal.GetUsersResult);
 }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <AppClient.AppGetUsers.GetUsersResponse> AppClient.AppGetUsers.IAppService.GetUsersAsync(AppClient.AppGetUsers.GetUsersRequest request)
 {
     return(base.Channel.GetUsersAsync(request));
 }
Exemplo n.º 4
0
 AppClient.AppGetUsers.GetUsersResponse AppClient.AppGetUsers.IAppService.GetUsers(AppClient.AppGetUsers.GetUsersRequest request)
 {
     return(base.Channel.GetUsers(request));
 }