Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the value of the current parameter that is being read.
Namespace: Microsoft.Data.OData
Assembly: Microsoft.Data.OData (in Microsoft.Data.OData.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Value As Object
Get
'Usage
Dim instance As ODataParameterReader
Dim value As Object
value = instance.Value
public abstract Object Value { get; }
public:
virtual property Object^ Value {
Object^ get () abstract;
}
abstract Value : Object
abstract function get Value () : Object
Property Value
Type: System.Object
The value of the current parameter that is being read.
Remarks
This property returns a primitive value, an ODataComplexValue or null when State is ODataParameterReaderState.Value. This property returns null when State is ODataParameterReaderState.Entry, ODataParameterReaderState.Feed or ODataParameterReaderState.Collection.