Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Called when a code snippet is committed to the source file.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Syntax
'Declaration
Public Overridable Sub OnChangesCommitted ( _
reason As UInteger, _
changedArea As TextSpan() _
)
'Usage
Dim instance As Source
Dim reason As UInteger
Dim changedArea As TextSpan()
instance.OnChangesCommitted(reason, changedArea)
public virtual void OnChangesCommitted(
uint reason,
TextSpan[] changedArea
)
public:
virtual void OnChangesCommitted(
unsigned int reason,
array<TextSpan>^ changedArea
)
abstract OnChangesCommitted :
reason:uint32 *
changedArea:TextSpan[] -> unit
override OnChangesCommitted :
reason:uint32 *
changedArea:TextSpan[] -> unit
public function OnChangesCommitted(
reason : uint,
changedArea : TextSpan[]
)
Parameters
- reason
Type: System.UInt32
A value from the ChangeCommitGestureFlags enumeration describing why the change was committed.
- changedArea
Type: array<Microsoft.VisualStudio.TextManager.Interop.TextSpan[]
A TextSpan object describing the total area that was changed.
Implements
IVsFinalTextChangeCommitEvents.OnChangesCommitted(UInt32, array<TextSpan[])
Remarks
This method is an implementation of IVsFinalTextChangeCommitEvents' OnChangesCommitted method.
The base method adds the span to the dirty span list.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.