MergeArticleCollection.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 MergeArticle object in the collection by name or by index number.
Overloads
Item[Int32] |
Gets a MergeArticle object in the collection by index number. |
Item[String] |
Gets a MergeArticle object in the collection by name. |
Remarks
This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.
Item[Int32]
Gets a MergeArticle object in the collection by index number.
public:
property Microsoft::SqlServer::Replication::MergeArticle ^ default[int] { Microsoft::SqlServer::Replication::MergeArticle ^ get(int index); };
public Microsoft.SqlServer.Replication.MergeArticle this[int index] { get; }
member this.Item(int) : Microsoft.SqlServer.Replication.MergeArticle
Default Public ReadOnly Property Item(index As Integer) As MergeArticle
Parameters
- index
- Int32
An Int32 value that specifies the position of the MergeArticle object in the collection.
Property Value
A MergeArticle object.
Remarks
This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.
Applies to
Item[String]
Gets a MergeArticle object in the collection by name.
public:
property Microsoft::SqlServer::Replication::MergeArticle ^ default[System::String ^] { Microsoft::SqlServer::Replication::MergeArticle ^ get(System::String ^ name); };
public Microsoft.SqlServer.Replication.MergeArticle this[string name] { get; }
member this.Item(string) : Microsoft.SqlServer.Replication.MergeArticle
Default Public ReadOnly Property Item(name As String) As MergeArticle
Parameters
- name
- String
A String value that is equivalent to the Name property of a MergeArticle object in the collection.
Property Value
A MergeArticle object.
Remarks
This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.