Class TokenValidatingEventArgs
An event arguments of TokenValidatingEventHandler
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class TokenValidatingEventArgs : EventArgs
  Constructors
TokenValidatingEventArgs(String)
Initializes a new instance of the TokenValidatingEventArgs class.
Declaration
public TokenValidatingEventArgs(string text)
  Parameters
| 
        System.String
        text
         The text.  | 
    
TokenValidatingEventArgs(String, Boolean)
Initializes a new instance of the TokenValidatingEventArgs class.
Declaration
public TokenValidatingEventArgs(string text, bool isValidToken)
  Parameters
| 
        System.String
        text
         The text.  | 
    
| 
        System.Boolean
        isValidToken
         if set to   | 
    
Properties
IsValidToken
Gets or sets a value indicating whether the text is valid token.
Declaration
public bool IsValidToken { get; set; }
  Property Value
| 
        System.Boolean
         
  | 
    
Text
Gets the text of the token.
Declaration
public string Text { get; }
  Property Value
| 
        System.String
         
  |