Compartir a través de


Application.Parent Property

Gets or sets the Instance that hosts this application.

Espacio de nombres: Microsoft.SqlServer.Management.Nmo
Ensamblado: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Sintaxis

'Declaración
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)

Valor de propiedad

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

Notas

Texto actualizado:5 de diciembre de 2005

Código de ejemplo actualizado:5 de diciembre de 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.

Ejemplo

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"

Seguridad para subprocesos

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.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

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

Otros recursos

Configurar instancias de Notification Services