AW.Webapi.Sample.Areas.HelpPage.TextSample.TextSample C# (CSharp) Method

TextSample() public method

public TextSample ( string text ) : System
text string
return System
        public TextSample(string text)
        {
            if (text == null)
            {
                throw new ArgumentNullException("text");
            }
            Text = text;
        }