Share via


AssemblyRefreshedEventArgs Constructors

Definition

Overloads

AssemblyRefreshedEventArgs(Assembly)

Initializes a new instance of AssemblyRefreshedEventArgs.

AssemblyRefreshedEventArgs(Assembly, Type[])

Initializes a new instance of AssemblyRefreshedEventArgs containing an array of changed types.

AssemblyRefreshedEventArgs(Assembly)

Initializes a new instance of AssemblyRefreshedEventArgs.

public:
 AssemblyRefreshedEventArgs(System::Reflection::Assembly ^ assembly);
public AssemblyRefreshedEventArgs (System.Reflection.Assembly assembly);
new Microsoft.VisualStudio.Shell.Design.AssemblyRefreshedEventArgs : System.Reflection.Assembly -> Microsoft.VisualStudio.Shell.Design.AssemblyRefreshedEventArgs
Public Sub New (assembly As Assembly)

Parameters

assembly
Assembly

The assembly that has been refreshed.

Applies to

AssemblyRefreshedEventArgs(Assembly, Type[])

Initializes a new instance of AssemblyRefreshedEventArgs containing an array of changed types.

public:
 AssemblyRefreshedEventArgs(System::Reflection::Assembly ^ assembly, cli::array <Type ^> ^ types);
public AssemblyRefreshedEventArgs (System.Reflection.Assembly assembly, Type[] types);
new Microsoft.VisualStudio.Shell.Design.AssemblyRefreshedEventArgs : System.Reflection.Assembly * Type[] -> Microsoft.VisualStudio.Shell.Design.AssemblyRefreshedEventArgs
Public Sub New (assembly As Assembly, types As Type())

Parameters

assembly
Assembly

The assembly that has been refreshed.

types
Type[]

An array of Type containing objects for all the types defined in this assembly that have been refreshed.

Applies to