AspNetWebSocketContext.Unvalidated Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets unvalidated versions of one or more field values that are submitted in an AspNetWebSocket message.
public:
virtual property System::Web::UnvalidatedRequestValuesBase ^ Unvalidated { System::Web::UnvalidatedRequestValuesBase ^ get(); };
public virtual System.Web.UnvalidatedRequestValuesBase Unvalidated { get; }
member this.Unvalidated : System.Web.UnvalidatedRequestValuesBase
Public Overridable ReadOnly Property Unvalidated As UnvalidatedRequestValuesBase
Property Value
The unvalidated values.
Exceptions
The property is not implemented.
Remarks
An unvalidated value has not been checked by ASP.NET request validation and might contain markup, script, or reserved characters. For more information about request validation, see UnvalidatedRequestValues.
Notes to Inheritors
If you override this property in a derived class, you must manually check the data for potential cross-site scripting attacks.