AeroFSSDK.AeroFSAuthClient.Configuration.ValidateConfiguration C# (CSharp) 메소드

ValidateConfiguration() 공개 메소드

Validate the credential values.
If there are any invalid values.
public ValidateConfiguration ( ) : void
리턴 void
            public void ValidateConfiguration()
            {
                if (HostName.IsNullOrEmpty()) throw new ArgumentNullException("HostName cannot be null or empty.");
                if (ClientID.IsNullOrEmpty()) throw new ArgumentNullException("ClientID cannot be null or empty.");
                if (ClientSecret.IsNullOrEmpty()) throw new ArgumentNullException("ClientSecret cannot be null or empty.");
            }
AeroFSAuthClient.Configuration