MergePullSubscriptionCollection.Item[] Property

Definition

Gets a MergePullSubscription object in the collection by index number or by the properties that uniquely identify a pull subscription.

Overloads

Item[Int32]

Gets a MergePullSubscription object in the collection by index number.

Item[String, String, String]

Gets a MergePullSubscription object in the collection by the PublisherName, PublicationDBName, and PublicationName properties that uniquely identify the pull subscription.

Remarks

This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.

Item[Int32]

Gets a MergePullSubscription object in the collection by index number.

public:
 property Microsoft::SqlServer::Replication::MergePullSubscription ^ default[int] { Microsoft::SqlServer::Replication::MergePullSubscription ^ get(int index); };
public Microsoft.SqlServer.Replication.MergePullSubscription this[int index] { get; }
member this.Item(int) : Microsoft.SqlServer.Replication.MergePullSubscription
Default Public ReadOnly Property Item(index As Integer) As MergePullSubscription

Parameters

index
Int32

An Int32 value that specifies the position of the MergePullSubscription object in the MergePullSubscriptionCollection.

Property Value

A MergePullSubscription object.

Remarks

This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.

Applies to

Item[String, String, String]

Gets a MergePullSubscription object in the collection by the PublisherName, PublicationDBName, and PublicationName properties that uniquely identify the pull subscription.

public:
 property Microsoft::SqlServer::Replication::MergePullSubscription ^ default[System::String ^, System::String ^, System::String ^] { Microsoft::SqlServer::Replication::MergePullSubscription ^ get(System::String ^ publisherName, System::String ^ publicationDBName, System::String ^ publicationName); };
public Microsoft.SqlServer.Replication.MergePullSubscription this[string publisherName, string publicationDBName, string publicationName] { get; }
member this.Item(string * string * string) : Microsoft.SqlServer.Replication.MergePullSubscription
Default Public ReadOnly Property Item(publisherName As String, publicationDBName As String, publicationName As String) As MergePullSubscription

Parameters

publisherName
String

A String value that specifies the name of the Publisher.

publicationDBName
String

A String value that specifies the name of the publication database.

publicationName
String

A String value that specifies the name of the merge publication.

Property Value

A MergePullSubscription object value that represents the merge pull subscription.

Remarks

This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.

Applies to