SPCmdlet.InternalEndProcessing method
This method executes inside of the EndProcessing() method, and therefore provides a means for users to add program functionality to the EndProcessing() method upon conclusion of cmdlet execution.
Namespace: Microsoft.SharePoint.PowerShell
Assembly: Microsoft.SharePoint.PowerShell (in Microsoft.SharePoint.PowerShell.dll)
Syntax
'Declaration
Protected Overridable Sub InternalEndProcessing
'Usage
Me.InternalEndProcessing()
protected virtual void InternalEndProcessing()
Remarks
The EndProcessing() method does not allow users to have access for the purpose of modifying or customizing the method's behavor. The InternalEndProcessing() method, however, executes inside of the EndProcessing method, and in this way allows users to execute custom actions while the EndProcessing method executes.