TestAutomationEssentials.Selenium.ElementsContainer.ElementsContainer C# (CSharp) Метод

ElementsContainer() защищенный Метод

Initializes the instance of ElementsContainer with the specified description
is null
protected ElementsContainer ( string description ) : System
description string A description representing the element in the log
Результат System
        protected ElementsContainer(string description)
        {
            if (description == null)
                throw new ArgumentNullException("description");

            Description = description;
        }