RequestValidator.Current 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 or sets a reference to the current RequestValidator instance that will be used in an application.
public:
static property System::Web::Util::RequestValidator ^ Current { System::Web::Util::RequestValidator ^ get(); void set(System::Web::Util::RequestValidator ^ value); };
public static System.Web.Util.RequestValidator Current { get; set; }
static member Current : System.Web.Util.RequestValidator with get, set
Public Shared Property Current As RequestValidator
Property Value
An instance of the RequestValidator class.
Exceptions
The property is null
.
Remarks
The Current property maintains a reference to the single allowed instance of the RequestValidator class. If no instance exists, a new one is created. If an instance already exists, the current instance is returned.
During initialization, a single instance of the RequestValidator class is created, and a reference to the instance is made available in the Current property. ASP.NET does not create a new request validator instance per request. Therefore, custom implementations of the RequestValidator class must be thread-safe.
Note
The Current property is not thread-safe while the property is setting a reference to the current RequestValidator class.