MergeArticleCollection.Item Property (String)
Gets a MergeArticle object in the collection by name.
Namespace: Microsoft.SqlServer.Replication
Assembly: Microsoft.SqlServer.Rmo (in Microsoft.SqlServer.Rmo.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
name As String _
) As MergeArticle
Get
'Usage
Dim instance As MergeArticleCollection
Dim name As String
Dim value As MergeArticle
value = instance(name)
public MergeArticle this[
string name
] { get; }
public:
property MergeArticle^ default[String^ name] {
MergeArticle^ get (String^ name);
}
member Item : MergeArticle
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- name
Type: System.String
A String value that is equivalent to the Name property of a MergeArticle object in the collection.
Property Value
Type: Microsoft.SqlServer.Replication.MergeArticle
A MergeArticle object.
Remarks
This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.
See Also