Gets or sets the relative distinguished name of the connector space entry. This property escapes characters as required and retrieves unescaped characters. This property should not be set with escaped characters.
Namespace: Microsoft.MetadirectoryServices
Assembly: Microsoft.MetadirectoryServicesEx (in microsoft.metadirectoryservicesex.dll)

Usage

Visual Basic
Dim instance As CSEntry
Dim value As String

value = instance.RDN

instance.RDN = value

Syntax

Visual Basic
Public MustOverride Property RDN As String
C#
public abstract string RDN { get; set; }
C++
public:
virtual property String^ RDN {
		String^ get () abstract;
		void set (String^ value) abstract;
}
J#
/** @property */
public abstract String get_RDN ()

/** @property */
public abstract void set_RDN (String value)
JScript
public abstract function get RDN () : String

public abstract function set RDN (value : String)

Property Value

Returns a String.

Exceptions

Exception type Condition
System.ArgumentNullException

The property value is null.

AttributeNotDefinedAsSourceException

The property is accessed inside a MapAttributesForImport method call, and the distinguished name was not selected as a source attribute.

System.InvalidOperationException

The management agent supports multi-part distinguished name components, and the first component contains more than one part.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Target Platforms

See Also