VBSymbol Constructors

Definition

Overloads

VBSymbol(SourceLocation, String, VBSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the VBSymbol class.

VBSymbol(SourceLocation, String, VBSymbolType, IEnumerable<RazorError>)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the VBSymbol class.

VBSymbol(Int32, Int32, Int32, String, VBSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the VBSymbol class.

VBSymbol(Int32, Int32, Int32, String, VBSymbolType, IEnumerable<RazorError>)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the VBSymbol class.

VBSymbol(SourceLocation, String, VBSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the VBSymbol class.

public VBSymbol (System.Web.Razor.Text.SourceLocation start, string content, System.Web.Razor.Tokenizer.Symbols.VBSymbolType type);
new System.Web.Razor.Tokenizer.Symbols.VBSymbol : System.Web.Razor.Text.SourceLocation * string * System.Web.Razor.Tokenizer.Symbols.VBSymbolType -> System.Web.Razor.Tokenizer.Symbols.VBSymbol
Public Sub New (start As SourceLocation, content As String, type As VBSymbolType)

Parameters

start
SourceLocation

The start of the source location.

content
String

The content String value.

Applies to

VBSymbol(SourceLocation, String, VBSymbolType, IEnumerable<RazorError>)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the VBSymbol class.

public VBSymbol (System.Web.Razor.Text.SourceLocation start, string content, System.Web.Razor.Tokenizer.Symbols.VBSymbolType type, System.Collections.Generic.IEnumerable<System.Web.Razor.Parser.SyntaxTree.RazorError> errors);
new System.Web.Razor.Tokenizer.Symbols.VBSymbol : System.Web.Razor.Text.SourceLocation * string * System.Web.Razor.Tokenizer.Symbols.VBSymbolType * seq<System.Web.Razor.Parser.SyntaxTree.RazorError> -> System.Web.Razor.Tokenizer.Symbols.VBSymbol
Public Sub New (start As SourceLocation, content As String, type As VBSymbolType, errors As IEnumerable(Of RazorError))

Parameters

start
SourceLocation

The start of the source location.

content
String

The content String value.

errors
IEnumerable<RazorError>

List of razor errors.

Applies to

VBSymbol(Int32, Int32, Int32, String, VBSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the VBSymbol class.

public VBSymbol (int offset, int line, int column, string content, System.Web.Razor.Tokenizer.Symbols.VBSymbolType type);
new System.Web.Razor.Tokenizer.Symbols.VBSymbol : int * int * int * string * System.Web.Razor.Tokenizer.Symbols.VBSymbolType -> System.Web.Razor.Tokenizer.Symbols.VBSymbol
Public Sub New (offset As Integer, line As Integer, column As Integer, content As String, type As VBSymbolType)

Parameters

offset
Int32

The offset value.

line
Int32

The line value.

column
Int32

The column value.

content
String

The content String value.

Applies to

VBSymbol(Int32, Int32, Int32, String, VBSymbolType, IEnumerable<RazorError>)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the VBSymbol class.

public VBSymbol (int offset, int line, int column, string content, System.Web.Razor.Tokenizer.Symbols.VBSymbolType type, System.Collections.Generic.IEnumerable<System.Web.Razor.Parser.SyntaxTree.RazorError> errors);
new System.Web.Razor.Tokenizer.Symbols.VBSymbol : int * int * int * string * System.Web.Razor.Tokenizer.Symbols.VBSymbolType * seq<System.Web.Razor.Parser.SyntaxTree.RazorError> -> System.Web.Razor.Tokenizer.Symbols.VBSymbol
Public Sub New (offset As Integer, line As Integer, column As Integer, content As String, type As VBSymbolType, errors As IEnumerable(Of RazorError))

Parameters

offset
Int32

The offset value.

line
Int32

The line value.

column
Int32

The column value.

content
String

The content String value.

errors
IEnumerable<RazorError>

List of razor errors.

Applies to