Share via


VBSymbol.Keyword Property

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Gets or sets the keyword used in the VB.

Namespace:  System.Web.Razor.Tokenizer.Symbols
Assembly:  System.Web.Razor (in System.Web.Razor.dll)

Syntax

'Declaration
Public Property Keyword As Nullable(Of VBKeyword)
    Get 
    Set
'Usage
Dim instance As VBSymbol 
Dim value As Nullable(Of VBKeyword)

value = instance.Keyword

instance.Keyword = value
public Nullable<VBKeyword> Keyword { get; set; }
public:
property Nullable<VBKeyword> Keyword {
    Nullable<VBKeyword> get ();
    void set (Nullable<VBKeyword> value);
}
member Keyword : Nullable<VBKeyword> with get, set
function get Keyword () : Nullable<VBKeyword>
function set Keyword (value : Nullable<VBKeyword>)

Property Value

Type: System.Nullable<VBKeyword>
The keyword used.

See Also

Reference

VBSymbol Class

System.Web.Razor.Tokenizer.Symbols Namespace