DotNetXri.Syntax.Xri3.Impl.XRI3.isReserved C# (CSharp) Method

isReserved() public method

public isReserved ( ) : bool
return bool
        public bool isReserved()
        {
            string spelling = this.authority.ToString();

            return (reserved.Contains(spelling.Substring(1)) | reserved.Contains(spelling.Substring(1)));
        }