RequestValidator.Current 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
애플리케이션에서 사용될 현재 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 클래스의 인스턴스입니다.
예외
속성은 null
입니다.
설명
이 속성은 Current 클래스의 허용된 단일 인스턴스에 대한 참조를 유지 관리합니다 RequestValidator . 인스턴스가 없으면 새 인스턴스가 만들어집니다. 인스턴스가 이미 있는 경우 현재 인스턴스가 반환됩니다.
초기화하는 동안 클래스의 단일 인스턴스가 RequestValidator 만들어지고 속성에서 인스턴스에 대한 참조를 Current 사용할 수 있습니다. ASP.NET 요청당 새 요청 유효성 검사기 인스턴스를 만들지 않습니다. 따라서 클래스의 RequestValidator 사용자 지정 구현은 스레드로부터 안전해야 합니다.
참고
Current 속성이 현재 RequestValidator 클래스에 대한 참조를 설정하는 동안에는 이 속성이 스레드로부터 안전하지 않습니다.