ExportsChangeEventArgs Constructor
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.
Initializes a new instance of the ExportsChangeEventArgs class.
public:
ExportsChangeEventArgs(System::Collections::Generic::IEnumerable<System::ComponentModel::Composition::Primitives::ExportDefinition ^> ^ addedExports, System::Collections::Generic::IEnumerable<System::ComponentModel::Composition::Primitives::ExportDefinition ^> ^ removedExports, System::ComponentModel::Composition::Hosting::AtomicComposition ^ atomicComposition);
public ExportsChangeEventArgs (System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.ExportDefinition> addedExports, System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.ExportDefinition> removedExports, System.ComponentModel.Composition.Hosting.AtomicComposition? atomicComposition);
public ExportsChangeEventArgs (System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.ExportDefinition> addedExports, System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.ExportDefinition> removedExports, System.ComponentModel.Composition.Hosting.AtomicComposition atomicComposition);
new System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs : seq<System.ComponentModel.Composition.Primitives.ExportDefinition> * seq<System.ComponentModel.Composition.Primitives.ExportDefinition> * System.ComponentModel.Composition.Hosting.AtomicComposition -> System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs
Public Sub New (addedExports As IEnumerable(Of ExportDefinition), removedExports As IEnumerable(Of ExportDefinition), atomicComposition As AtomicComposition)
Parameters
- addedExports
- IEnumerable<ExportDefinition>
The events that were added.
- removedExports
- IEnumerable<ExportDefinition>
The events that were removed.
- atomicComposition
- AtomicComposition
The composition transaction that contains the change.
Exceptions
addedExports
or removedExports
is null
.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.