System.Security.SecurityElement.SecurityElement C# (CSharp) Method

SecurityElement() public method

public SecurityElement ( string tag ) : System.Collections
tag string
return System.Collections
        public SecurityElement(string tag)
        {
            if (tag == null)
                throw new ArgumentNullException(nameof(tag));

            if (!IsValidTag(tag))
                throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, SR.Argument_InvalidElementTag, tag));

            _tag = tag;
            _text = null;
        }

Same methods

SecurityElement::SecurityElement ( ) : System.Collections
SecurityElement::SecurityElement ( string tag, string text ) : System.Collections