C# 클래스 Tailspin.Surveys.Web.Security.AuthenticationException

Exception occurs when token in TokenCache is expired/ missing.
상속: System.Exception
파일 보기 프로젝트 열기: Azure-Samples/guidance-identity-management-for-multitenant-apps

공개 메소드들

메소드 설명
AuthenticationException ( ) : System

Initializes with defaults.

AuthenticationException ( string message ) : System

Initializes with a specified error message.

AuthenticationException ( string message, Exception innerException ) : System

Initializes with a specified error message and a reference to the inner exception that is the cause of this exception.

메소드 상세

AuthenticationException() 공개 메소드

Initializes with defaults.
public AuthenticationException ( ) : System
리턴 System

AuthenticationException() 공개 메소드

Initializes with a specified error message.
public AuthenticationException ( string message ) : System
message string A message that describes the error.
리턴 System

AuthenticationException() 공개 메소드

Initializes with a specified error message and a reference to the inner exception that is the cause of this exception.
public AuthenticationException ( string message, Exception innerException ) : System
message string The error message that explains the reason for the exception. ///
innerException System.Exception /// The exception that is the cause of the current exception. If the innerException parameter /// is not a null reference, the current exception is raised in a catch block that handles the inner exception. ///
리턴 System