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 after the code snippet has been inserted and formatted.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
Syntax
'Declaration
Function OnAfterInsertion ( _
pSession As IVsExpansionSession _
) As Integer
int OnAfterInsertion(
IVsExpansionSession pSession
)
int OnAfterInsertion(
IVsExpansionSession^ pSession
)
abstract OnAfterInsertion :
pSession:IVsExpansionSession -> int
function OnAfterInsertion(
pSession : IVsExpansionSession
) : int
Parameters
- pSession
Type: Microsoft.VisualStudio.TextManager.Interop.IVsExpansionSession
[in] An IVsExpansionSession object containing information about the code snippet that has just been inserted. This can be a null value.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr2.idl:
HRESULT IVsExpansionClient::OnAfterInsertion(
IVsExpansionSession *pSession
);
This method is called after the code snippet has been inserted and formatted but before the special editing mode for code snippets is enabled. If the IVsExpansionSession object is given, use it only to gather information about the code snippet that was just inserted or to override default field values. The remaining methods are solely for use by the special editing mode.
.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.