C# 클래스 GSF.Security.Authentication.IntegratedSecurityClient

Uses windows integrated security to authentication. This uses NTLM in non-domain environments and Kerberos in domain environments.
상속: GSF.Diagnostics.DisposableLoggingClassBase
파일 보기 프로젝트 열기: GridProtectionAlliance/openHistorian 1 사용 예제들

공개 메소드들

메소드 설명
IntegratedSecurityClient ( ) : System

Uses the default credentials of the user to authenticate

IntegratedSecurityClient ( string username, string password, string domain ) : System

Uses the specified username and password to authenticate.

TryAuthenticateAsClient ( Stream stream, byte additionalChallenge = null ) : bool

Authenticates the client using the supplied stream.

메소드 상세

IntegratedSecurityClient() 공개 메소드

Uses the default credentials of the user to authenticate
public IntegratedSecurityClient ( ) : System
리턴 System

IntegratedSecurityClient() 공개 메소드

Uses the specified username and password to authenticate.
public IntegratedSecurityClient ( string username, string password, string domain ) : System
username string The username to use
password string the password to use
domain string the domain to long in as.
리턴 System

TryAuthenticateAsClient() 공개 메소드

Authenticates the client using the supplied stream.
public TryAuthenticateAsClient ( Stream stream, byte additionalChallenge = null ) : bool
stream Stream the stream to use to authenticate the connection.
additionalChallenge byte Additional data that much match between the client and server /// for the connection to succeed.
리턴 bool