RefitNotificationDelegate Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Delegate type for notification of refit operations.
public delegate void RefitNotificationDelegate(FragmentId mergedId, FragmentId[] absorbedIds);
type RefitNotificationDelegate = delegate of FragmentId * FragmentId[] -> unit
Public Delegate Sub RefitNotificationDelegate(mergedId As FragmentId, absorbedIds As FragmentId())
Parameters
- mergedId
- FragmentId
The fragment id of the target merged fragment.
- absorbedIds
- FragmentId[]
Fragment ids of all affected fragments.
Remarks
In the case of a merge operation, absorbedIds will contain all and only the ids of the fragments that were merged into mergedId, but not including mergedId. In the case of a refreeze operation, absorbedIds will also contain mergedId.