SymbolExtensions.GetContent Method

Definition

Overloads

GetContent(SpanBuilder)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this SymbolExtensions class.

GetContent(ISymbol)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this SymbolExtensions class.

GetContent(IEnumerable<ISymbol>, SourceLocation)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this SymbolExtensions class.

GetContent(SpanBuilder, Func<IEnumerable<ISymbol>,IEnumerable<ISymbol>>)

Gets the content of this SymbolExtensions class.

GetContent(SpanBuilder)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this SymbolExtensions class.

public static System.Web.Razor.Text.LocationTagged<string> GetContent (this System.Web.Razor.Parser.SyntaxTree.SpanBuilder span);
static member GetContent : System.Web.Razor.Parser.SyntaxTree.SpanBuilder -> System.Web.Razor.Text.LocationTagged<string>
<Extension()>
Public Function GetContent (span As SpanBuilder) As LocationTagged(Of String)

Parameters

span
SpanBuilder

The intersection with the given span.

Returns

The content of this SymbolExtensions class.

Applies to

GetContent(ISymbol)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this SymbolExtensions class.

public static System.Web.Razor.Text.LocationTagged<string> GetContent (this System.Web.Razor.Tokenizer.Symbols.ISymbol symbol);
static member GetContent : System.Web.Razor.Tokenizer.Symbols.ISymbol -> System.Web.Razor.Text.LocationTagged<string>
<Extension()>
Public Function GetContent (symbol As ISymbol) As LocationTagged(Of String)

Parameters

symbol
ISymbol

The provided symbols.

Returns

The content of this SymbolExtensions class.

Applies to

GetContent(IEnumerable<ISymbol>, SourceLocation)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this SymbolExtensions class.

public static System.Web.Razor.Text.LocationTagged<string> GetContent (this System.Collections.Generic.IEnumerable<System.Web.Razor.Tokenizer.Symbols.ISymbol> symbols, System.Web.Razor.Text.SourceLocation spanStart);
static member GetContent : seq<System.Web.Razor.Tokenizer.Symbols.ISymbol> * System.Web.Razor.Text.SourceLocation -> System.Web.Razor.Text.LocationTagged<string>
<Extension()>
Public Function GetContent (symbols As IEnumerable(Of ISymbol), spanStart As SourceLocation) As LocationTagged(Of String)

Parameters

symbols
IEnumerable<ISymbol>

The symbols to provide.

spanStart
SourceLocation

The starting index of the span.

Returns

The content of this SymbolExtensions class.

Applies to

GetContent(SpanBuilder, Func<IEnumerable<ISymbol>,IEnumerable<ISymbol>>)

Gets the content of this SymbolExtensions class.

public static System.Web.Razor.Text.LocationTagged<string> GetContent (this System.Web.Razor.Parser.SyntaxTree.SpanBuilder span, Func<System.Collections.Generic.IEnumerable<System.Web.Razor.Tokenizer.Symbols.ISymbol>,System.Collections.Generic.IEnumerable<System.Web.Razor.Tokenizer.Symbols.ISymbol>> filter);
static member GetContent : System.Web.Razor.Parser.SyntaxTree.SpanBuilder * Func<seq<System.Web.Razor.Tokenizer.Symbols.ISymbol>, seq<System.Web.Razor.Tokenizer.Symbols.ISymbol>> -> System.Web.Razor.Text.LocationTagged<string>
<Extension()>
Public Function GetContent (span As SpanBuilder, filter As Func(Of IEnumerable(Of ISymbol), IEnumerable(Of ISymbol))) As LocationTagged(Of String)

Parameters

span
SpanBuilder

The intersection with the given span.

filter
Func<IEnumerable<ISymbol>,IEnumerable<ISymbol>>

A list of chosen symbols.

Returns

The content of this SymbolExtensions class.

Applies to