CmisSync.Lib.Cmis.PersistentNtlmAuthenticationProvider.HandleResponse C# (CSharp) Method

HandleResponse() public method

Handles the response, if it is a System.Net.HttpWebResponse instance. Takes all cookies of the response and saves them at the local System.Net.CookieContainer.
public HandleResponse ( object connection ) : void
connection object /// should be passed. ///
return void
        public override void HandleResponse(object connection) {
            HttpWebResponse response = connection as HttpWebResponse;
            if (response != null) {
                // AtomPub and browser binding authentictaion
                this.Cookies.Add(response.Cookies);
            }
        }