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

RecordEditorTable() public method

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

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

Same methods

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