Gets or sets the integer representation of the attribute value. Use
this property with single-valued attributes only. Do not use this
property for multi-valued attributes.
Namespace: Microsoft.MetadirectoryServices
Assembly: Microsoft.MetadirectoryServicesEx (in
microsoft.metadirectoryservicesex.dll)
Usage
Visual Basic |
Dim instance As Attrib
Dim value As Long
value = instance.IntegerValue
instance.IntegerValue = value
|
Syntax
Visual Basic |
Public MustOverride Property IntegerValue As Long
|
C# |
public abstract long IntegerValue { get; set; }
|
C++ |
public:
virtual property long long IntegerValue {
long long get () abstract;
void set (long long value) abstract;
}
|
J# |
/** @property */
public abstract long get_IntegerValue ()
/** @property */
public abstract void set_IntegerValue (long value)
|
JScript |
public abstract function get IntegerValue () : long
public abstract function set IntegerValue (value : long)
|
Property Value
Returns an
Int64 object.
Exceptions
Exception type |
Condition |
System.InvalidOperationException
|
The Attrib object is
being set to one of the following:
-
A non-binary value
-
A null value
-
More than one value
If you are unsure of the data type of an Attrib
object, use the Value
property or the Values
property for multi-valued attributes.
|
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