HostedEventProvider Constructor ()
Initializes a new instance of the HostedEventProvider class.
Espace de noms: Microsoft.SqlServer.Management.Nmo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntaxe
'Déclaration
Public Sub New
public HostedEventProvider ()
public:
HostedEventProvider ()
public HostedEventProvider ()
public function HostedEventProvider ()
Notes
Texte mis à jour :5 décembre 2005
Exemple de code mis à jour :5 décembre 2005
If you use the default constructor, you must immediately set the Name property and then set the Parent property. You can then set other properties.
Because the default constructor does not set property values, you must set the StartTime and Timeout properties.
Exemple
The following example shows how to use this default constructor. Note that default property values are provided. The assembly name is an empty string because the FileSystemWatcherProvider is a standard (built-in) event provider:
// Define a hosted event provider and set properties.
HostedEventProvider flightEventProvider = new HostedEventProvider();
flightEventProvider.Parent = myApplication;
flightEventProvider.Name = "FlightEP";
flightEventProvider.StartTime = DateTime.MinValue;
flightEventProvider.Timeout = new TimeSpan(0, 5, 0);
flightEventProvider.ClassName = "FileSystemWatcherProvider";
flightEventProvider.AssemblyName = "";
flightEventProvider.SystemName = notificationServicesHost;
' Define a hosted event provider and set properties.
Dim flightEventProvider As HostedEventProvider = _
New HostedEventProvider()
flightEventProvider.Parent = myApplication
flightEventProvider.Name = "FlightEP"
flightEventProvider.StartTime = DateTime.MinValue
flightEventProvider.Timeout = New TimeSpan(0, 5, 0)
flightEventProvider.ClassName = "FileSystemWatcherProvider"
flightEventProvider.AssemblyName = ""
flightEventProvider.SystemName = notificationServicesHost
Plateformes
Plateformes de développement
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Plateformes cibles
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Voir aussi
Référence
HostedEventProvider Class
HostedEventProvider Members
Microsoft.SqlServer.Management.Nmo Namespace
Autres ressources
Définition de fournisseurs d'événements hébergés
HostedProvider Element (ADF)