HtmlSymbol Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
HtmlSymbol(SourceLocation, String, HtmlSymbolType) |
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 HtmlSymbol class. |
HtmlSymbol(SourceLocation, String, HtmlSymbolType, 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 HtmlSymbol class. |
HtmlSymbol(Int32, Int32, Int32, String, HtmlSymbolType) |
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 HtmlSymbol class. |
HtmlSymbol(Int32, Int32, Int32, String, HtmlSymbolType, 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 HtmlSymbol class. |
HtmlSymbol(SourceLocation, String, HtmlSymbolType)
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 HtmlSymbol class.
public HtmlSymbol (System.Web.Razor.Text.SourceLocation start, string content, System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType type);
new System.Web.Razor.Tokenizer.Symbols.HtmlSymbol : System.Web.Razor.Text.SourceLocation * string * System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType -> System.Web.Razor.Tokenizer.Symbols.HtmlSymbol
Public Sub New (start As SourceLocation, content As String, type As HtmlSymbolType)
Parameters
- start
- SourceLocation
The start of the source location.
- content
- String
The content value.
- type
- HtmlSymbolType
The HtmlSymbolType.
Applies to
HtmlSymbol(SourceLocation, String, HtmlSymbolType, 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 HtmlSymbol class.
public HtmlSymbol (System.Web.Razor.Text.SourceLocation start, string content, System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType type, System.Collections.Generic.IEnumerable<System.Web.Razor.Parser.SyntaxTree.RazorError> errors);
new System.Web.Razor.Tokenizer.Symbols.HtmlSymbol : System.Web.Razor.Text.SourceLocation * string * System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType * seq<System.Web.Razor.Parser.SyntaxTree.RazorError> -> System.Web.Razor.Tokenizer.Symbols.HtmlSymbol
Public Sub New (start As SourceLocation, content As String, type As HtmlSymbolType, errors As IEnumerable(Of RazorError))
Parameters
- start
- SourceLocation
The start of the source location.
- content
- String
The content value.
- type
- HtmlSymbolType
The HtmlSymbolType.
- errors
- IEnumerable<RazorError>
The razor error.
Applies to
HtmlSymbol(Int32, Int32, Int32, String, HtmlSymbolType)
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 HtmlSymbol class.
public HtmlSymbol (int offset, int line, int column, string content, System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType type);
new System.Web.Razor.Tokenizer.Symbols.HtmlSymbol : int * int * int * string * System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType -> System.Web.Razor.Tokenizer.Symbols.HtmlSymbol
Public Sub New (offset As Integer, line As Integer, column As Integer, content As String, type As HtmlSymbolType)
Parameters
- offset
- Int32
The location of the symbol.
- line
- Int32
The exact line the symbol is found.
- column
- Int32
The column number the symbol is found.
- content
- String
The content value.
- type
- HtmlSymbolType
The HtmlSymbolType.
Applies to
HtmlSymbol(Int32, Int32, Int32, String, HtmlSymbolType, 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 HtmlSymbol class.
public HtmlSymbol (int offset, int line, int column, string content, System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType type, System.Collections.Generic.IEnumerable<System.Web.Razor.Parser.SyntaxTree.RazorError> errors);
new System.Web.Razor.Tokenizer.Symbols.HtmlSymbol : int * int * int * string * System.Web.Razor.Tokenizer.Symbols.HtmlSymbolType * seq<System.Web.Razor.Parser.SyntaxTree.RazorError> -> System.Web.Razor.Tokenizer.Symbols.HtmlSymbol
Public Sub New (offset As Integer, line As Integer, column As Integer, content As String, type As HtmlSymbolType, errors As IEnumerable(Of RazorError))
Parameters
- offset
- Int32
The location of the symbol.
- line
- Int32
The exact line the symbol is found.
- column
- Int32
The column number the symbol is found.
- content
- String
The content value.
- type
- HtmlSymbolType
The HtmlSymbolType.
- errors
- IEnumerable<RazorError>
The razor error.