Partager via


ComErrorCollection propriété

Gets a collection of errors generated by the replication agent.

Espace de noms :  Microsoft.SqlServer.Replication
Assembly :  Microsoft.SqlServer.Replication (dans Microsoft.SqlServer.Replication.dll)

Syntaxe

'Déclaration
Public Overridable ReadOnly Property ComErrorCollection As IEnumerable
    Get
'Utilisation
Dim instance As MergeSynchronizationAgent
Dim value As IEnumerable

value = instance.ComErrorCollection
public virtual IEnumerable ComErrorCollection { get; }
public:
virtual property IEnumerable^ ComErrorCollection {
    IEnumerable^ get ();
}
abstract ComErrorCollection : IEnumerable
override ComErrorCollection : IEnumerable
function get ComErrorCollection () : IEnumerable

Valeur de la propriété

Type : System.Collections. . :: . .IEnumerable
A IEnumerable collection of ComErrorRecord objects.

Implémente

IMergeSynchronizationAgent. . :: . .ComErrorCollection

Notes

To view all agent errors, you must iterate through the collection of ComErrorRecord objects.

Exemples

The following example shows how to iterate through the returned error collection after an agent is run.

[C#]

foreach (ComErrorRecord errorRecord in agent.ComErrorCollection)
    {
      WriteLog("[ERROR: " + errorRecord.ErrorNumber + 
          errorRecord.Description + "]");
    }