LearningRegistry.LRClient.LRClient C# (CSharp) Method

LRClient() public method

public LRClient ( string baseUri, string username, string password ) : System
baseUri string
username string
password string
return System
        public LRClient(string baseUri, string username, string password)
        {
            _baseUri = new Uri(baseUri);
            _serializer = LRUtils.GetSerializer();
            _encoder = LRUtils.GetEncoder();
            _harvester = new Harvester(_baseUri);
            Username = username;
            Password = password;
            SslValidationCallback = AcceptAllCertificates;
        }

Same methods

LRClient::LRClient ( ) : System
LRClient::LRClient ( string baseUri ) : System