Entry.IsReserved C# (CSharp) Method

IsReserved() public method

public IsReserved ( ) : bool
return bool
         public bool IsReserved() {
            String prefix = Prefix;
            String name = Name;
            if(prefix != null) {
               return prefix.startsWith(RESERVED);
            }
            return name.startsWith(RESERVED);
         }
         /// <summary>