AutoCompleteEditHandler.CanAcceptChange Method
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Indicates a parse result that can accept changes.
Namespace: System.Web.Razor.Parser.SyntaxTree
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Protected Overrides Function CanAcceptChange ( _
target As Span, _
normalizedChange As TextChange _
) As PartialParseResult
'Usage
Dim target As Span
Dim normalizedChange As TextChange
Dim returnValue As PartialParseResult
returnValue = Me.CanAcceptChange(target, _
normalizedChange)
protected override PartialParseResult CanAcceptChange(
Span target,
TextChange normalizedChange
)
protected:
virtual PartialParseResult CanAcceptChange(
Span^ target,
TextChange normalizedChange
) override
abstract CanAcceptChange :
target:Span *
normalizedChange:TextChange -> PartialParseResult
override CanAcceptChange :
target:Span *
normalizedChange:TextChange -> PartialParseResult
protected override function CanAcceptChange(
target : Span,
normalizedChange : TextChange
) : PartialParseResult
Parameters
- target
Type: System.Web.Razor.Parser.SyntaxTree.Span
The phase of the target.
- normalizedChange
Type: System.Web.Razor.Text.TextChange
The normalized TextChange.
Return Value
Type: System.Web.Razor.PartialParseResult