Namespace: Microsoft.MetadirectoryServices
Assembly: Microsoft.MetadirectoryServicesEx (in microsoft.metadirectoryservicesex.dll)
Usage
Visual Basic |
---|
Dim instance As Attrib Dim value As ReferenceValue value = instance.ReferenceValue instance.ReferenceValue = value |
Syntax
Visual Basic |
---|
Public MustOverride Property ReferenceValue As ReferenceValue |
C# |
---|
public abstract ReferenceValue ReferenceValue { get; set; } |
C++ |
---|
public: virtual property ReferenceValue^ ReferenceValue { ReferenceValue^ get () abstract; void set (ReferenceValue^ value) abstract; } |
J# |
---|
/** @property */ public abstract ReferenceValue get_ReferenceValue () /** @property */ public abstract void set_ReferenceValue (ReferenceValue value) |
JScript |
---|
public abstract function get ReferenceValue () : ReferenceValue public abstract function set ReferenceValue (value : ReferenceValue) |
Property Value
Returns a ReferenceValue object.Exceptions
Exception type | Condition |
---|---|
System.ArgumentNullException |
Null reference value. |
System.InvalidOperationException |
The Attrib object is being set to one of the following:
If you are unsure of the data type of an Attrib object, use the Value property or the Values property for multi-valued attributes. |
Remarks
This property has a number of restrictions on its use:
-
The property is available only on CSEntry objects.
-
You can set the property only during export attribute flow (MapAttributesForExport).
If you specify a reference to an object that does not exist in the connector space, a placeholder object is created at that location.
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.