Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Initializes a new instance of the SubscriptionField class.
Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Declaration
Public Sub New
public SubscriptionField ()
public:
SubscriptionField ()
public SubscriptionField ()
public function SubscriptionField ()
Hinweise
Aktualisierter Text:05. Dezember 2005
Aktualisierter Beispielcode:05. Dezember 2005
When using the default constructor, first set the Name, then the Parent and then other properties, such as the required Type property, to avoid run-time exceptions.
Beispiel
The following examples show how to use this default constructor to create a subscription field and then add it to a subscription class:
// Create a subscription field and set required properties.
SubscriptionField subDevice = new SubscriptionField();
subDevice.Name = "DeviceName";
subDevice.Parent = flightSubscriptions;
subDevice.Type = "nvarchar(255)";
subDevice.TypeModifier = "";
flightSubscriptions.SubscriptionFields.Add(subDevice);
' Create a subscription field and set required properties.
Dim subDevice As SubscriptionField = New SubscriptionField()
subDevice.Name = "DeviceName"
subDevice.Parent = flightSubscriptions
subDevice.Type = "nvarchar(255)"
subDevice.TypeModifier = ""
flightSubscriptions.SubscriptionFields.Add(subDevice)
Plattformen
Entwicklungsplattformen
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Zielplattforme
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Siehe auch
Verweis
SubscriptionField Class
SubscriptionField Members
Microsoft.SqlServer.Management.Nmo Namespace