Share via


CorsRequestContext.Properties Property

 

Gets a set of properties for the CorsRequestContext.

Namespace:   System.Web.Cors
Assembly:  System.Web.Cors (in System.Web.Cors.dll)

Syntax

public IDictionary<string, object> Properties {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    private set;
}
public:
property IDictionary<String^, Object^>^ Properties {
    [CompilerGeneratedAttribute]
    IDictionary<String^, Object^>^ get();
    [CompilerGeneratedAttribute]
    private: void set(IDictionary<String^, Object^>^ value);
}
member Properties : IDictionary<string, Object> with get, private set
Public Property Properties As IDictionary(Of String, Object)
    Get
    Private Set
End Property

Property Value

Type: System.Collections.Generic.IDictionary<String, Object>

See Also

CorsRequestContext Class
System.Web.Cors Namespace

Return to top