다음을 통해 공유


RequestValidator.Current 속성

정의

애플리케이션에서 사용될 현재 RequestValidator 인스턴스에 대한 참조를 가져오거나 설정합니다.

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; }
member this.Current : System.Web.Util.RequestValidator with get, set
Public Shared Property Current As RequestValidator

속성 값

RequestValidator

RequestValidator 클래스의 인스턴스입니다.

예외

속성은 null입니다.

설명

이 속성은 Current 클래스의 허용된 단일 인스턴스에 대한 참조를 유지 관리합니다 RequestValidator . 인스턴스가 없으면 새 인스턴스가 만들어집니다. 인스턴스가 이미 있는 경우 현재 인스턴스가 반환됩니다.

초기화하는 동안 클래스의 단일 인스턴스가 RequestValidator 만들어지고 속성에서 인스턴스에 대한 참조를 Current 사용할 수 있습니다. ASP.NET 요청당 새 요청 유효성 검사기 인스턴스를 만들지 않습니다. 따라서 클래스의 RequestValidator 사용자 지정 구현은 스레드로부터 안전해야 합니다.

참고

Current 속성이 현재 RequestValidator 클래스에 대한 참조를 설정하는 동안에는 이 속성이 스레드로부터 안전하지 않습니다.

적용 대상