Publication.EnumArticles Method
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.
Returns the articles in the publication.
public:
System::Collections::ArrayList ^ EnumArticles();
public System.Collections.ArrayList EnumArticles ();
member this.EnumArticles : unit -> System.Collections.ArrayList
Public Function EnumArticles () As ArrayList
Returns
An ArrayList of TransArticle or MergeArticle objects.
Exceptions
If the publication does not exist on the server.
Remarks
If the publication is a merge publication, the ArrayList contains MergeArticle objects. If the publication is a transactional or snapshot publication, the ArrayList contains TransArticle objects.
The EnumArticles method can only be called by members of the sysadmin
fixed server role, by members of the db_owner
fixed database role, or users in the publication access list (PAL) for the publication
Calling EnumArticles is equivalent to executing sp_helparticle (Transact-SQL) or sp_helpmergearticle (Transact-SQL).