MvcCSharpRazorCodeParser Class

Definition

Compiles ASP.NET Razor views into classes.

public class MvcCSharpRazorCodeParser : System.Web.Razor.Parser.CSharpCodeParser
type MvcCSharpRazorCodeParser = class
    inherit CSharpCodeParser
Public Class MvcCSharpRazorCodeParser
Inherits CSharpCodeParser
Inheritance

Constructors

MvcCSharpRazorCodeParser()

Initializes a new instance of the MvcCSharpRazorCodeParser() class.

Properties

Context

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

(Inherited from ParserBase)
CurrentLocation

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
CurrentSymbol

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
EndOfFile

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the tokenizer is in the end of file.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
IsMarkupParser

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the parser is a markup parser.

(Inherited from ParserBase)
IsNested

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 code is nested.

(Inherited from CSharpCodeParser)
Keywords

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the C sharp language keywords.

(Inherited from CSharpCodeParser)
Language

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

(Inherited from CSharpCodeParser)
OtherParser

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

(Inherited from CSharpCodeParser)
PreviousSymbol

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Span

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the SpanBuilder associated with this instance.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
SpanConfig

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Tokenizer

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)

Methods

Accept(IEnumerable<TSymbol>)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Accept(TSymbol)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptAll(TSymbolType[])

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts all types of tokenizer.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptAndMoveNext()

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts and moves to the next tokenizer.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptIf(CSharpKeyword)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts the ‘IF’ keyword.

(Inherited from CSharpCodeParser)
AcceptSingleWhiteSpaceCharacter()

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts single whitespace character.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptUntil(TSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptUntil(TSymbolType, TSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found and it will backup so that the next token is of the given type.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptUntil(TSymbolType, TSymbolType, TSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given tokens until a token of the given type is found.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptUntil(TSymbolType[])

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given types is found.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptWhile(Func<TSymbol,Boolean>)

Accepts token while the condition has been reached.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptWhile(TSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the token while a token of the given type is not found.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptWhile(TSymbolType, TSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given type has been reached.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptWhile(TSymbolType, TSymbolType, TSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given type has been reached.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptWhile(TSymbolType[])

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given types has been reached.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AcceptWhiteSpaceInLines()

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts whitespace in lines.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AddMarkerSymbolIfNecessary()

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a marker symbol if necessary.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AddMarkerSymbolIfNecessary(SourceLocation)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a marker symbol if necessary.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AssertDirective(String)

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

(Inherited from CSharpCodeParser)
At(CSharpKeyword)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code contains ‘AT’ keyword.

(Inherited from CSharpCodeParser)
At(TSymbolType)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
AtIdentifier(Boolean)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token is at the specified identifier.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Balance(BalancingModes)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Balance(BalancingModes, TSymbolType, TSymbolType, SourceLocation)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
BaseTypeDirective(String, Func<String,SpanCodeGenerator>)

Indicates the base type directive.

(Inherited from CSharpCodeParser)
BuildSpan(SpanBuilder, SourceLocation, String)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
ConfigureSpan(Action<SpanBuilder,Action<SpanBuilder>>)

Configures the span.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
ConfigureSpan(Action<SpanBuilder>)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
EnsureCurrent()

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Expected(KnownSymbolType)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Expected(TSymbolType[])

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the expected token with the given types.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
FunctionsDirective()

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

(Inherited from CSharpCodeParser)
HandleEmbeddedTransition()

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

(Inherited from CSharpCodeParser)
HelperDirective()

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

(Inherited from CSharpCodeParser)
InheritsDirective()

The inherits directive.

InheritsDirectiveCore()

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

(Inherited from CSharpCodeParser)
Initialize(SpanBuilder)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
IsAtEmbeddedTransition(Boolean, Boolean)

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

(Inherited from CSharpCodeParser)
LayoutDirective()

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

(Inherited from CSharpCodeParser)
MapDirectives(Action, String[])

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

(Inherited from CSharpCodeParser)
ModelDirective()

The model directive.

NextIs(Func<TSymbol,Boolean>)

Determines whether the token with the given condition would pass.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
NextIs(TSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given type would pass.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
NextIs(TSymbolType[])

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given types would pass.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
NextToken()

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser advances to the next token.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Optional(KnownSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether parsing a token with the given type is optional.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Optional(TSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether parsing a token with the given type is optional.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Output(AcceptedCharacters)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with accepted characters.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Output(SpanKind)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with span kind.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Output(SpanKind, AcceptedCharacters)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with a given span kind and accepted characters.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
OutputSpanBeforeRazorComment()

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Spans the output of the parsing before the comment.

(Inherited from CSharpCodeParser)
ParseBlock()

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

(Inherited from CSharpCodeParser)
ParseDocument()

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

(Inherited from ParserBase)
ParseSection(Tuple<String,String>, Boolean)

Parses the section in ordered list of the elements.

(Inherited from ParserBase)
PushSpanConfig()

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
PushSpanConfig(Action<SpanBuilder,Action<SpanBuilder>>)

Pushes the span configuration.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
PushSpanConfig(Action<SpanBuilder>)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
PutBack(IEnumerable<TSymbol>)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
PutBack(TSymbol)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
PutCurrentBack()

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
RazorComment()

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
ReadWhile(Func<TSymbol,Boolean>)

Reads a token while the condition is not reached.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
Required(TSymbolType, Boolean, String)

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

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)
ReservedDirective(Boolean)

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

(Inherited from CSharpCodeParser)
SectionDirective()

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

(Inherited from CSharpCodeParser)
SessionStateDirective()

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

(Inherited from CSharpCodeParser)
SessionStateDirectiveCore()

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

(Inherited from CSharpCodeParser)
SessionStateTypeDirective(String, Func<String,String,SpanCodeGenerator>)

Indicates the directive for session state type.

(Inherited from CSharpCodeParser)
TryGetDirectiveHandler(String, Action)

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

(Inherited from CSharpCodeParser)
ValidSessionStateValue()

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the value of the session state is valid.

(Inherited from CSharpCodeParser)
Was(TSymbolType)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given type was parsed.

(Inherited from TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>)

Applies to