Microsoft.Protocols.TestSuites.SharedTestSuite.StatusManager.RecordCoauthSession C# (CSharp) Method

RecordCoauthSession() public method

This method is used to record the coauth lock status with specified client ID and schema lock ID for the file URL.
public RecordCoauthSession ( string fileUrl, string clientId, string schemaLockId ) : void
fileUrl string Specify the file URL which get the coauth lock.
clientId string Specify the client ID of the coauth lock.
schemaLockId string Specify the schema ID of the coauth lock.
return void
        public void RecordCoauthSession(string fileUrl, string clientId, string schemaLockId)
        {
            string userName = Common.GetConfigurationPropertyValue("UserName1", this.site);
            string password = Common.GetConfigurationPropertyValue("Password1", this.site);
            string domain = Common.GetConfigurationPropertyValue("Domain", this.site);

            this.RecordCoauthSession(fileUrl, clientId, schemaLockId, userName, password, domain);
        }

Same methods

StatusManager::RecordCoauthSession ( string fileUrl, string clientId, string schemaLockId, string userName, string password, string domain ) : void