TransSubscriptionCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a TransSubscription object in the collection, by index number or by the properties that uniquely define a subscription.
Overloads
Item[Int32] |
Gets a TransSubscription object in the collection by index number. |
Item[String, String] |
Gets a TransSubscription object in the TransSubscriptionCollection, by SubscriberName and SubscriptionDBName properties that uniquely identify the subscription. |
Remarks
This namespace, class, or member is supported only in version 2.0 of the .NET Framework.
Item[Int32]
Gets a TransSubscription object in the collection by index number.
public:
property Microsoft::SqlServer::Replication::TransSubscription ^ default[int] { Microsoft::SqlServer::Replication::TransSubscription ^ get(int index); };
public Microsoft.SqlServer.Replication.TransSubscription this[int index] { get; }
member this.Item(int) : Microsoft.SqlServer.Replication.TransSubscription
Default Public ReadOnly Property Item(index As Integer) As TransSubscription
Parameters
- index
- Int32
An Int32 value that specifies the position of the TransSubscription object in the TransSubscriptionCollection.
Property Value
A TransSubscription object.
Remarks
This namespace, class, or member is supported only in version 2.0 of the .NET Framework.
Applies to
Item[String, String]
Gets a TransSubscription object in the TransSubscriptionCollection, by SubscriberName and SubscriptionDBName properties that uniquely identify the subscription.
public:
property Microsoft::SqlServer::Replication::TransSubscription ^ default[System::String ^, System::String ^] { Microsoft::SqlServer::Replication::TransSubscription ^ get(System::String ^ subscriberName, System::String ^ subscriptionDBName); };
public Microsoft.SqlServer.Replication.TransSubscription this[string subscriberName, string subscriptionDBName] { get; }
member this.Item(string * string) : Microsoft.SqlServer.Replication.TransSubscription
Default Public ReadOnly Property Item(subscriberName As String, subscriptionDBName As String) As TransSubscription
Parameters
Property Value
A TransSubscription object.
Remarks
This namespace, class, or member is supported only in version 2.0 of the .NET Framework.