Share via


CSharpSymbol.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 language keyword.

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

Syntax

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

value = instance.Keyword

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

Property Value

Type: System.Nullable<CSharpKeyword>
The language keyword.

See Also

Reference

CSharpSymbol Class

System.Web.Razor.Tokenizer.Symbols Namespace