예제 #1
0
 /// <summary>
 /// Visit a System Token
 /// </summary>
 /// <param name="tokenIn">the system token to visit</param>
 public override void Visit(SystemToken tokenIn)
 {
     ExceptionUtils.CheckArgumentNotNull(tokenIn, "tokenIn");
     throw new ODataException(ODataErrorStrings.SelectPropertyVisitor_SystemTokenInSelect(tokenIn.Identifier));
 }
예제 #2
0
 /// <summary>
 /// Visit an SystemToken
 /// </summary>
 /// <param name="tokenIn">The System token to visit</param>
 /// <returns>A user defined class</returns>
 public virtual T Visit(SystemToken tokenIn)
 {
     throw new NotImplementedException();
 }