ODataSerializerContext.Items Property
Gets a property bag associated with this context to store any generic data.
Namespace: System.Web.Http.OData.Formatter.Serialization
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
'Declaration
Public Property Items As IDictionary(Of Object, Object)
Get
Private Set
'Usage
Dim instance As ODataSerializerContext
Dim value As IDictionary(Of Object, Object)
value = instance.Items
public IDictionary<Object, Object> Items { get; private set; }
public:
property IDictionary<Object^, Object^>^ Items {
IDictionary<Object^, Object^>^ get ();
private: void set (IDictionary<Object^, Object^>^ value);
}
member Items : IDictionary<Object, Object> with get, private set
function get Items () : IDictionary<Object, Object>
private function set Items (value : IDictionary<Object, Object>)
Property Value
Type: System.Collections.Generic.IDictionary<Object, Object>
A property bag associated with this context to store any generic data.