public ResultCode SetServiceInstanceInfo(string serviceInstance, ServiceInstanceInfoValue serviceInstanceInfo)
        {
            SetServiceInstanceInfoResponse setServiceInstanceInfoResponse = ((IFederatedServiceOnboarding)this).SetServiceInstanceInfo(new SetServiceInstanceInfoRequest
            {
                serviceInstance     = serviceInstance,
                serviceInstanceInfo = serviceInstanceInfo
            });

            return(setServiceInstanceInfoResponse.SetServiceInstanceInfoResult);
        }
 public GetServiceInstanceInfoResponse(ServiceInstanceInfoValue GetServiceInstanceInfoResult)
 {
     this.GetServiceInstanceInfoResult = GetServiceInstanceInfoResult;
 }
 public Task <SetServiceInstanceInfoResponse> SetServiceInstanceInfoAsync(string serviceInstance, ServiceInstanceInfoValue serviceInstanceInfo)
 {
     return(((IFederatedServiceOnboarding)this).SetServiceInstanceInfoAsync(new SetServiceInstanceInfoRequest
     {
         serviceInstance = serviceInstance,
         serviceInstanceInfo = serviceInstanceInfo
     }));
 }
Ejemplo n.º 4
0
 public SetServiceInstanceInfoRequest(string serviceInstance, ServiceInstanceInfoValue serviceInstanceInfo)
 {
     this.serviceInstance     = serviceInstance;
     this.serviceInstanceInfo = serviceInstanceInfo;
 }