| ActiveDirectoryObjectSetStringAttribute Method |
Sets a single value string attribute of an object. If a null or empty value is supplied,
the attribute will be cleared / deleted.
Namespace:
Galactic.ActiveDirectory
Assembly:
Galactic.ActiveDirectory (in Galactic.ActiveDirectory.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public bool SetStringAttribute(
string attributeName,
string value
)
Public Function SetStringAttribute (
attributeName As String,
value As String
) As Boolean
public:
bool SetStringAttribute(
String^ attributeName,
String^ value
)
member SetStringAttribute :
attributeName : string *
value : string -> bool
Parameters
- attributeName
- Type: SystemString
The name of the attribute to set. - value
- Type: SystemString
The string value to set the attribute to.
Return Value
Type:
BooleanTrue if the attribuet was set successfully, false otherwise.
See Also