AuditCollection Class
The AuditCollection class represents a collection of Audit objects that represent all the audits on the instance of SQL Server.
Inheritance Hierarchy
System.Object
  Microsoft.SqlServer.Management.Smo.AbstractCollectionBase
    Microsoft.SqlServer.Management.Smo.SmoCollectionBase
      Microsoft.SqlServer.Management.Smo.SortedListCollectionBase
        Microsoft.SqlServer.Management.Smo.SimpleObjectCollectionBase
          Microsoft.SqlServer.Management.Smo.AuditCollection
Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public NotInheritable Class AuditCollection _
    Inherits SimpleObjectCollectionBase
'Usage
Dim instance As AuditCollection
public sealed class AuditCollection : SimpleObjectCollectionBase
public ref class AuditCollection sealed : public SimpleObjectCollectionBase
[<SealedAttribute>]
type AuditCollection =  
    class
        inherit SimpleObjectCollectionBase
    end
public final class AuditCollection extends SimpleObjectCollectionBase
The AuditCollection type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| .gif) | Count | Gets the number of objects in the referenced collection. (Inherited from SmoCollectionBase.) | 
| .gif) | IsSynchronized | Gets the Boolean property value that specifies whether access to the collection is synchronized and therefore thread-safe. (Inherited from SmoCollectionBase.) | 
| .gif) | Item[Int32] | Gets an Audit object in the collection by index number. | 
| .gif) | Item[String] | Gets an Audit object in the collection by name. | 
| .gif) | Parent | Gets the Server object that is the parent of the AuditCollection object. | 
| .gif) | SyncRoot | Gets an object that can be used to synchronize access to the collection. (Inherited from SmoCollectionBase.) | 
Top
Methods
| Name | Description | |
|---|---|---|
| .gif) | Add | Adds the specified Audit object to the AuditCollection. | 
| .gif) | AddExisting | Adds an object to the collection. (Inherited from AbstractCollectionBase.) | 
| .gif) | AddImpl | Adds the specified object to this collection (Inherited from SortedListCollectionBase.) | 
| .gif) | Contains | Verifies whether the specified object exists in the collection. (Inherited from SimpleObjectCollectionBase.) | 
| .gif) | CopyTo | Copies the collection of objects to a one-dimensional array beginning at the index value specified. | 
| .gif) | Equals | (Inherited from Object.) | 
| .gif) | Finalize | (Inherited from Object.) | 
| .gif) | GetCollectionElementType | Gets the Collection Element Type. (Inherited from SmoCollectionBase.) | 
| .gif) | GetEnumerator | Returns an IEnumerator interface that allows you to iterate through the objects in the collection. (Inherited from SmoCollectionBase.) | 
| .gif) | GetHashCode | (Inherited from Object.) | 
| .gif) | GetItemById(Int32) | Extracts a member from the referenced collection using a system-defined, unique identifier. (Inherited from SmoCollectionBase.) | 
| .gif) | GetItemById(Int32, String) | Extracts a member from the referenced collection using a system-defined, unique identifier and name. (Inherited from SmoCollectionBase.) | 
| .gif) | GetObjectByIndex | Extracts a member from the referenced collection using a system-defined, unique identifier. (Inherited from SmoCollectionBase.) | 
| .gif) | GetType | (Inherited from Object.) | 
| .gif) | ImplAddExisting | Adds an existing specified object to this collection (Inherited from SortedListCollectionBase.) | 
| .gif) | InitializeChildCollection() | Initializes the child collections of the referenced collection. (Inherited from SmoCollectionBase.) | 
| .gif) | InitializeChildCollection(Boolean) | Initializes the child collections of the referenced collection with the option to refresh the properties of the referenced collection. (Inherited from SmoCollectionBase.) | 
| .gif) | InitInnerCollection | Initializes the collection. (Inherited from SimpleObjectCollectionBase.) | 
| .gif) | ItemById | Extracts a member from the AuditCollection collection using a system-defined, unique identifier. | 
| .gif) | MemberwiseClone | (Inherited from Object.) | 
| .gif) | Refresh() | Refreshes the referenced collection. (Inherited from SmoCollectionBase.) | 
| .gif) | Refresh(Boolean) | Refreshes the referenced collection with the option to refresh child objects of the referenced collection. (Inherited from SmoCollectionBase.) | 
| .gif) | ToString | (Inherited from Object.) | 
| .gif) | ValidateParentObject | Validates the parent object exists. (Inherited from SmoCollectionBase.) | 
Top
Fields
| Name | Description | |
|---|---|---|
| .gif) | initialized | This value supports the SMO infrastructure and is not intended to be used directly from your code. (Inherited from AbstractCollectionBase.) | 
Top
Explicit Interface Implementations
| Name | Description | |
|---|---|---|
| .gif) .gif) | ICollection.CopyTo | Copies the elements from an instance to an array beginning at the index indicated. (Inherited from SmoCollectionBase.) | 
Top
Remarks
An AuditCollection object can be used to gain access to a set of audits. You can use the Item property to return a specific Audit object.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.