Stumps.Stump.Stump C# (CSharp) Method

Stump() public method

Initializes a new instance of the T:Stumps.Stump class.
is null, an empty string, or only contains white space.
public Stump ( string stumpId ) : System
stumpId string The unique identifier for the stump.
return System
        public Stump(string stumpId)
        {
            if (string.IsNullOrWhiteSpace(stumpId))
            {
                throw new ArgumentNullException("stumpId");
            }

            this.StumpId = stumpId;
            _ruleList = new List<IStumpRule>();

            _response = null;
        }