CallbackVisitor Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
| CallbackVisitor(Action<Span>) |
Dieser Typ bzw. dieses Element unterstützt die .NET Framework-Infrastruktur und sollte nicht direkt aus Ihrem Code verwendet werden. Initialisiert eine neue Instanz der CallbackVisitor-Klasse. |
| CallbackVisitor(Action<Span>, Action<RazorError>) |
Dieser Typ bzw. dieses Element unterstützt die .NET Framework-Infrastruktur und sollte nicht direkt aus Ihrem Code verwendet werden. Initialisiert eine neue Instanz der CallbackVisitor-Klasse. |
| CallbackVisitor(Action<Span>, Action<RazorError>, Action<BlockType>, Action<BlockType>) |
Dieser Typ bzw. dieses Element unterstützt die .NET Framework-Infrastruktur und sollte nicht direkt aus Ihrem Code verwendet werden. Initialisiert eine neue Instanz der CallbackVisitor-Klasse. |
| CallbackVisitor(Action<Span>, Action<RazorError>, Action<BlockType>, Action<BlockType>, Action) |
Dieser Typ bzw. dieses Element unterstützt die .NET Framework-Infrastruktur und sollte nicht direkt aus Ihrem Code verwendet werden. Initialisiert eine neue Instanz der CallbackVisitor-Klasse. |
CallbackVisitor(Action<Span>)
Dieser Typ bzw. dieses Element unterstützt die .NET Framework-Infrastruktur und sollte nicht direkt aus Ihrem Code verwendet werden. Initialisiert eine neue Instanz der CallbackVisitor-Klasse.
public CallbackVisitor(Action<System.Web.Razor.Parser.SyntaxTree.Span> spanCallback);
new System.Web.Razor.Parser.CallbackVisitor : Action<System.Web.Razor.Parser.SyntaxTree.Span> -> System.Web.Razor.Parser.CallbackVisitor
Public Sub New (spanCallback As Action(Of Span))
Parameter
Gilt für:
CallbackVisitor(Action<Span>, Action<RazorError>)
Dieser Typ bzw. dieses Element unterstützt die .NET Framework-Infrastruktur und sollte nicht direkt aus Ihrem Code verwendet werden. Initialisiert eine neue Instanz der CallbackVisitor-Klasse.
public CallbackVisitor(Action<System.Web.Razor.Parser.SyntaxTree.Span> spanCallback, Action<System.Web.Razor.Parser.SyntaxTree.RazorError> errorCallback);
new System.Web.Razor.Parser.CallbackVisitor : Action<System.Web.Razor.Parser.SyntaxTree.Span> * Action<System.Web.Razor.Parser.SyntaxTree.RazorError> -> System.Web.Razor.Parser.CallbackVisitor
Public Sub New (spanCallback As Action(Of Span), errorCallback As Action(Of RazorError))
Parameter
- errorCallback
- Action<RazorError>
Der Delegat für den Fehlerbesuch.
Gilt für:
CallbackVisitor(Action<Span>, Action<RazorError>, Action<BlockType>, Action<BlockType>)
Dieser Typ bzw. dieses Element unterstützt die .NET Framework-Infrastruktur und sollte nicht direkt aus Ihrem Code verwendet werden. Initialisiert eine neue Instanz der CallbackVisitor-Klasse.
public CallbackVisitor(Action<System.Web.Razor.Parser.SyntaxTree.Span> spanCallback, Action<System.Web.Razor.Parser.SyntaxTree.RazorError> errorCallback, Action<System.Web.Razor.Parser.SyntaxTree.BlockType> startBlockCallback, Action<System.Web.Razor.Parser.SyntaxTree.BlockType> endBlockCallback);
new System.Web.Razor.Parser.CallbackVisitor : Action<System.Web.Razor.Parser.SyntaxTree.Span> * Action<System.Web.Razor.Parser.SyntaxTree.RazorError> * Action<System.Web.Razor.Parser.SyntaxTree.BlockType> * Action<System.Web.Razor.Parser.SyntaxTree.BlockType> -> System.Web.Razor.Parser.CallbackVisitor
Public Sub New (spanCallback As Action(Of Span), errorCallback As Action(Of RazorError), startBlockCallback As Action(Of BlockType), endBlockCallback As Action(Of BlockType))
Parameter
- errorCallback
- Action<RazorError>
Der Delegat für den Fehlerbesuch.
Gilt für:
CallbackVisitor(Action<Span>, Action<RazorError>, Action<BlockType>, Action<BlockType>, Action)
Dieser Typ bzw. dieses Element unterstützt die .NET Framework-Infrastruktur und sollte nicht direkt aus Ihrem Code verwendet werden. Initialisiert eine neue Instanz der CallbackVisitor-Klasse.
public CallbackVisitor(Action<System.Web.Razor.Parser.SyntaxTree.Span> spanCallback, Action<System.Web.Razor.Parser.SyntaxTree.RazorError> errorCallback, Action<System.Web.Razor.Parser.SyntaxTree.BlockType> startBlockCallback, Action<System.Web.Razor.Parser.SyntaxTree.BlockType> endBlockCallback, Action completeCallback);
new System.Web.Razor.Parser.CallbackVisitor : Action<System.Web.Razor.Parser.SyntaxTree.Span> * Action<System.Web.Razor.Parser.SyntaxTree.RazorError> * Action<System.Web.Razor.Parser.SyntaxTree.BlockType> * Action<System.Web.Razor.Parser.SyntaxTree.BlockType> * Action -> System.Web.Razor.Parser.CallbackVisitor
Public Sub New (spanCallback As Action(Of Span), errorCallback As Action(Of RazorError), startBlockCallback As Action(Of BlockType), endBlockCallback As Action(Of BlockType), completeCallback As Action)
Parameter
- errorCallback
- Action<RazorError>
Der Delegat für den Fehlerbesuch.
- completeCallback
- Action
Der Delegat, der das Abschlussereignis ausführen soll.