System.Net.NtlmClient.Authenticate C# (CSharp) 메소드

Authenticate() 공개 메소드

public Authenticate ( string challenge, WebRequest webRequest, ICredentials credentials ) : Authorization
challenge string
webRequest WebRequest
credentials ICredentials
리턴 Authorization
		public Authorization Authenticate (string challenge, WebRequest webRequest, ICredentials credentials) 
		{
			if (authObject == null)
				return null;

			return authObject.Authenticate (challenge, webRequest, credentials);
		}