FeatureManager.FeatureAvailable Event
Occurs when a new type of feature is available.
Namespace: Microsoft.Windows.Design.Features
Assembly: Microsoft.Windows.Design.Extensibility (in Microsoft.Windows.Design.Extensibility.dll)
Syntax
'Declaration
Public Event FeatureAvailable As EventHandler(Of FeatureAvailableEventArgs)
'Usage
Dim instance As FeatureManager
Dim handler As EventHandler(Of FeatureAvailableEventArgs)
AddHandler instance.FeatureAvailable, handler
public event EventHandler<FeatureAvailableEventArgs> FeatureAvailable
public:
event EventHandler<FeatureAvailableEventArgs^>^ FeatureAvailable {
void add (EventHandler<FeatureAvailableEventArgs^>^ value);
void remove (EventHandler<FeatureAvailableEventArgs^>^ value);
}
JScript does not support events.
Remarks
Some feature connectors may need to be notified when new feature providers are offered by the feature manager, even if no direct call has been made to them.
.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.
See Also
Reference
Microsoft.Windows.Design.Features Namespace
FeatureConnector<TFeatureProviderType>