WSFederationAuthenticationModule.SecurityTokenReceived 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
STS(보안 토큰 서비스)에서 보안 토큰을 수신하면 발생합니다.
public:
event EventHandler<System::IdentityModel::Services::SecurityTokenReceivedEventArgs ^> ^ SecurityTokenReceived;
public event EventHandler<System.IdentityModel.Services.SecurityTokenReceivedEventArgs> SecurityTokenReceived;
member this.SecurityTokenReceived : EventHandler<System.IdentityModel.Services.SecurityTokenReceivedEventArgs>
Public Custom Event SecurityTokenReceived As EventHandler(Of SecurityTokenReceivedEventArgs)
Public Event SecurityTokenReceived As EventHandler(Of SecurityTokenReceivedEventArgs)
이벤트 유형
예제
void WSFederationAuthenticationModule_SecurityTokenReceived(object sender, SecurityTokenReceivedEventArgs e)
{
//Augment token validation with your cusotm validation checks without invalidating the token.
System.Diagnostics.Trace.WriteLine("Handling SecurityTokenReceived event");
}
설명
토큰의 유효성을 검사하기 전에 이벤트 처리기를 추가하여 토큰을 수정할 수 있습니다. 이벤트 처리기에서 속성을 통해 보안 토큰에 SecurityTokenReceivedEventArgs.SecurityToken 액세스할 수 있습니다. 이벤트는 SecurityTokenReceived 취소할 수 있는 이벤트이며, 이벤트 처리기에서 속성을 true
로 설정 Cancel 하여 WS-Federation 로그인 응답 메시지의 처리를 종료할 수 있습니다.
이 이벤트는 STS(보안 토큰 서비스)에서 받은 WS-Federation 로그인 응답 메시지("wsignin1.0")를 처리할 때 이벤트 처리기 대리자 내부에서 OnAuthenticateRequest 발생합니다. 보안 토큰이 로그인 응답 메시지의 wresult 또는 wresultptr 매개 변수에서 역직렬화된 직후에 발생하지만 보안 토큰의 유효성을 검사하기 전에 발생합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET