Ejemplo n.º 1
0
 public void UpdateOrganizationProperties(string authToken, OrganizationPropertiesToUpdate orgProps)
 {
     if (authToken == null)
     {
         throw new ArgumentNullException("authToken");
     }
     if (orgProps == null)
     {
         throw new ArgumentNullException("orgProps");
     }
     diadocHttpApi.UpdateOrganizationProperties(authToken, orgProps);
 }
Ejemplo n.º 2
0
 public void UpdateOrganizationProperties(string authToken, OrganizationPropertiesToUpdate orgProps)
 {
     PerformHttpRequest(authToken, "POST", "/UpdateOrganizationProperties", Serialize(orgProps));
 }
Ejemplo n.º 3
0
 public Task UpdateOrganizationPropertiesAsync(string authToken, OrganizationPropertiesToUpdate orgProps)
 {
     return(PerformHttpRequestAsync(authToken, "POST", "/UpdateOrganizationProperties", Serialize(orgProps)));
 }