AuthorizationContext.Items Property

[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]

Gets the dictionary of key/value pairs associated with this context.

Namespace:  System.ComponentModel.DataAnnotations
Assembly:  System.ServiceModel.DomainServices.Server (in System.ServiceModel.DomainServices.Server.dll)

Syntax

'Declaration
Public ReadOnly Property Items As IDictionary(Of Object, Object)
    Get
'Usage
Dim instance As AuthorizationContext
Dim value As IDictionary(Of Object, Object)

value = instance.Items
public IDictionary<Object, Object> Items { get; }
public:
property IDictionary<Object^, Object^>^ Items {
    IDictionary<Object^, Object^>^ get ();
}
member Items : IDictionary<Object, Object>
function get Items () : IDictionary<Object, Object>

Property Value

Type: System.Collections.Generic.IDictionary<Object, Object>
The dictionary of key/value pairs associated with this context.

Remarks

The Items property never contains nulla null reference (Nothing in Visual Basic), but it may be empty. Changes made to items in this dictionary do not affect the original dictionary specified in the constructor.

See Also

Reference

AuthorizationContext Class

System.ComponentModel.DataAnnotations Namespace