Deletes a property from a user account in AC Calls: xct_spACDeleteUserProperty


Namespace: ctAC
Assembly: ctAC (in ctAC.dll)

Syntax

Visual Basic (Declaration)
<SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In), _
 WebMethodAttribute(Description := "Deletes a property from a user account in AC", MessageName := "deleteUserProperty")>

Public Sub deleteUserProperty( _ 
   ByVal userGUID As String,  _ 
   ByVal propertyName As String _ 
)
C#
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
[WebMethodAttribute(Description = "Deletes a property from a user account in AC", MessageName = "deleteUserProperty")]
public void deleteUserProperty(
   string userGUID,
   string propertyName
)
C++
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
[WebMethodAttribute(Description = L"Deletes a property from a user account in AC", MessageName = L"deleteUserProperty")]
public:
 void deleteUserProperty(
   String userGUID,
   String propertyName
) sealed 
J#
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
/** @attribute WebMethodAttribute(Description = "Deletes a property from a user account in AC", MessageName = "deleteUserProperty") */
public void deleteUserProperty(
   string userGUID,
   string propertyName
)
JScript
public 

   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
   WebMethodAttribute(Description = "Deletes a property from a user account in AC", MessageName = "deleteUserProperty")
function deleteUserProperty(
   userGUID : String,
   propertyName : String
)

Parameters

userGUID
propertyName

See Also