Share via


Span.Symbols Property

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the symbols used to generate the code for the span.

Namespace:  System.Web.Razor.Parser.SyntaxTree
Assembly:  System.Web.Razor (in System.Web.Razor.dll)

Syntax

'Declaration
Public Property Symbols As IEnumerable(Of ISymbol)
    Get 
    Protected Set
'Usage
Dim instance As Span 
Dim value As IEnumerable(Of ISymbol)

value = instance.Symbols

instance.Symbols = value
public IEnumerable<ISymbol> Symbols { get; protected set; }
public:
property IEnumerable<ISymbol^>^ Symbols {
    IEnumerable<ISymbol^>^ get ();
    protected: void set (IEnumerable<ISymbol^>^ value);
}
member Symbols : IEnumerable<ISymbol> with get, set
function get Symbols () : IEnumerable<ISymbol>
protected function set Symbols (value : IEnumerable<ISymbol>)

Property Value

Type: System.Collections.Generic.IEnumerable<ISymbol>
The symbols used to generate the code for the span.

See Also

Reference

Span Class

System.Web.Razor.Parser.SyntaxTree Namespace