BackupLocationCollection Class
Applies To: SQL Server (starting with 2016)
Contains a collection of BackupLocation objects. This class cannot be inherited.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)
Inheritance Hierarchy
System.Object
Microsoft.AnalysisServices.BackupLocationCollection
Syntax
[GuidAttribute("6CCE165D-2AFB-4c5d-93B4-0DF4C04F0947")]
public sealed class BackupLocationCollection : IList, ICollection,
IEnumerable
[GuidAttribute("6CCE165D-2AFB-4c5d-93B4-0DF4C04F0947")]
public ref class BackupLocationCollection sealed : IList, ICollection,
IEnumerable
[<Sealed>]
[<GuidAttribute("6CCE165D-2AFB-4c5d-93B4-0DF4C04F0947")>]
type BackupLocationCollection =
class
interface IList
interface ICollection
interface IEnumerable
end
<GuidAttribute("6CCE165D-2AFB-4c5d-93B4-0DF4C04F0947")>
Public NotInheritable Class BackupLocationCollection
Implements IList, ICollection, IEnumerable
Constructors
Name | Description | |
---|---|---|
BackupLocationCollection() | Initializes a new instance of the BackupLocationCollection class. |
Properties
Name | Description | |
---|---|---|
Count | Gets the number of BackupLocation objects contained in the collection. |
|
Item[Int32] | Gets or sets the BackupLocation at the specified index from the collection. |
Methods
Name | Description | |
---|---|---|
Add(BackupLocation) | Adds a BackupLocation to the end of the collection. |
|
AddRange(ICollection) | Adds the elements of an ICollection to the end of the collection. |
|
Clear() | Removes all elements from the collection. |
|
Contains(BackupLocation) | Indicates whether the collection contains a specified BackupLocation. |
|
CopyTo(Array, Int32) | Copies the entire collection to a compatible one-dimensional Array, starting at the specified index of the target array. |
|
Equals(Object) | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
IndexOf(BackupLocation) | Gets the index of a specified BackupLocation. |
|
Insert(Int32, BackupLocation) | Inserts a BackupLocation into the collection at the specified index. |
|
Remove(BackupLocation) | Removes the specified BackupLocation from the collection. |
|
RemoveAt(Int32) | Removes the BackupLocation at the specified index from the collection. |
|
ToString() | (Inherited from Object.) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
IEnumerable.GetEnumerator() | Returns an enumerator that iterates through a collection. |
|
IList.Add(Object) | Adds an item to the collection. |
|
IList.Contains(Object) | Indicates whether the collection contains a specific value. |
|
IList.IndexOf(Object) | Determines the index of a specific item in the collection. |
|
IList.Insert(Int32, Object) | Inserts an item to the collection at the specified index. |
|
IList.Remove(Object) | Removes the first occurrence of a specified object from the collection. |
|
ICollection.IsSynchronized | ||
ICollection.SyncRoot | ||
IList.IsFixedSize | ||
IList.IsReadOnly | ||
IList.Item[Int32] |
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.
See Also
Microsoft.AnalysisServices Namespace
Return to top