Partager via


Application.Parent Property

Gets or sets the Instance that hosts this application.

Espace de noms: Microsoft.SqlServer.Management.Nmo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntaxe

'Déclaration
Public Property Parent As Instance
public Instance Parent { get; set; }
public:
property Instance^ Parent {
    Instance^ get ();
    void set (Instance^ value);
}
/** @property */
public Instance get_Parent ()

/** @property */
public void set_Parent (Instance value)
public function get Parent () : Instance

public function set Parent (value : Instance)

Valeur de propriété

An Instance object. This Instance must match the Instance to which you add the application.

Notes

Texte mis à jour :5 décembre 2005

Exemple de code mis à jour :5 décembre 2005

Each Application has a parent Instance. You typically supply the parent object when you create the Application using the Application(Instance,String) constructor.

If you set the parent in the constructor, do not set the parent using this property. Setting the parent twice throws an exception.

If you use the default constructor, you must set this property and the Name property before you can set other properties.

Exemple

The following examples show how to set this property when using the default constructor for the Application class:

// Create application and set required properties.
Application myApplication = new Application();
myApplication.Name = applicationName;
myApplication.Parent = myInstance;
myApplication.SchemaName = "dbo";
myApplication.ChronicleQuantumLimit = 1440;
myApplication.SubscriptionQuantumLimit = 30;
myApplication.QuantumDuration = new TimeSpan(0, 1, 0);
myApplication.VacuumRetentionAge = new TimeSpan(7, 0, 0, 0);
myApplication.PerformanceQueryInterval = new TimeSpan(0, 1, 0);
myApplication.ProcessEventsInOrder = false;
myApplication.EventThrottle = 1000;
myApplication.SubscriptionThrottle = 1000;
myApplication.NotificationThrottle = 1000;
myApplication.LogBeforeDeliveryAttempts = false;
myApplication.LogStatusInfo = false;
myApplication.LogNotificationText = false;
myApplication.BaseDirectoryPath = @"C:\NS\Default";
myApplication.ApplicationDefinitionFilePath = @"C:\NS";
' Create application and set required properties.
Dim myApplication As Application = New Application()
myApplication.Name = applicationName
myApplication.Parent = myInstance
myApplication.SchemaName = "dbo"
myApplication.ChronicleQuantumLimit = 1440
myApplication.SubscriptionQuantumLimit = 30
myApplication.QuantumDuration = New TimeSpan(0, 1, 0)
myApplication.VacuumRetentionAge = New TimeSpan(7, 0, 0, 0)
myApplication.PerformanceQueryInterval = New TimeSpan(0, 1, 0)
myApplication.ProcessEventsInOrder = False
myApplication.EventThrottle = 1000
myApplication.SubscriptionThrottle = 1000
myApplication.NotificationThrottle = 1000
myApplication.LogBeforeDeliveryAttempts = False
myApplication.LogStatusInfo = False
myApplication.LogNotificationText = False
myApplication.BaseDirectoryPath = "C:\NS\Default"
myApplication.ApplicationDefinitionFilePath = "C:\NS"

Sécurité des threads

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

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

Application Class
Application Members
Microsoft.SqlServer.Management.Nmo Namespace

Autres ressources

Configuration des instances de Notification Services