Microsoft Identity Integration Server 2003 Developer Reference

Utils.ConvertSecurityDescriptorToString

The ConvertSecurityDescriptorToString method converts a byte array containing a security descriptor to a string.
[C#]
public String ConvertSecurityDescriptorToString(
  Byte[] sd
);
[Visual Basic .NET]
Public Function ConvertSecurityDescriptorToString( _
  ByVal sd As Byte[] _
) As String
Implements Utils.ConvertSecurityDescriptorToString

Parameters

sd
The security descriptor to convert.

Return Values

A string representation of the security descriptor.

Exceptions

Exception type Condition
ArgumentNullException The argument is null.
Win32Exception The Win32 function returns a failure.

Requirements

Product: Microsoft Identity Integration Server 2003
Namespace: Defined in Microsoft.MetadirectoryServices.
Assembly: Requires Microsoft.MetadirectoryServices (in Microsoft.MetadirectoryServices.dll).
.NET Framework: Requires .NET Framework 1.1.

See Also

Utils