Share via


CSharpSymbol.EscapedIdentifier Property

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

Gets or sets a value that indicates whether the symbol has an escaped identifier.

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

Syntax

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

value = instance.EscapedIdentifier

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

Property Value

Type: System.Nullable<Boolean>
true if the symbol has an escaped identifier; otherwise, false.

See Also

Reference

CSharpSymbol Class

System.Web.Razor.Tokenizer.Symbols Namespace