コード例 #1
0
ファイル: Reference.cs プロジェクト: TrembitaUA/examples
 public GetUsersRequest(string protocolVersion, string id, string userId, AppClient.AppGetUsers.XRoadServiceIdentifierType service, AppClient.AppGetUsers.XRoadClientIdentifierType client)
 {
     this.protocolVersion = protocolVersion;
     this.id      = id;
     this.userId  = userId;
     this.service = service;
     this.client  = client;
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: TrembitaUA/examples
 public GetUsersResponse(string protocolVersion, string id, string userId, AppClient.AppGetUsers.XRoadServiceIdentifierType service, AppClient.AppGetUsers.XRoadClientIdentifierType client, AppClient.AppGetUsers.AppUser[] GetUsersResult)
 {
     this.protocolVersion = protocolVersion;
     this.id             = id;
     this.userId         = userId;
     this.service        = service;
     this.client         = client;
     this.GetUsersResult = GetUsersResult;
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: TrembitaUA/examples
 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));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: TrembitaUA/examples
 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);
 }