New to Telerik UI for WinFormsStart a free 30-day trial

An event arguments of TokenValidatingEventHandler

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class TokenValidatingEventArgs : EventArgs

Inheritance: objectEventArgsTokenValidatingEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the TokenValidatingEventArgs class.

C#
public TokenValidatingEventArgs(string text, bool isValidToken)
Parameters:textstring

The text.

isValidTokenbool

if set to true [is valid token].

Initializes a new instance of the TokenValidatingEventArgs class.

C#
public TokenValidatingEventArgs(string text)
Parameters:textstring

The text.

Properties

Gets or sets a value indicating whether the text is valid token.

C#
public bool IsValidToken { get; set; }
Property Value:

true if the text is token; otherwise, false.

Gets the text of the token.

C#
public string Text { get; }