IDeploymentConfigurationDictionary Interface
Contains a collection of deployment steps.
Namespace: Microsoft.VisualStudio.SharePoint.Deployment
Assembly: Microsoft.VisualStudio.SharePoint (in Microsoft.VisualStudio.SharePoint.dll)
Syntax
'Declaration
Public Interface IDeploymentConfigurationDictionary _
Inherits IDictionary(Of String, IDeploymentConfiguration), ICollection(Of KeyValuePair(Of String, IDeploymentConfiguration)), _
IEnumerable(Of KeyValuePair(Of String, IDeploymentConfiguration)), IEnumerable
public interface IDeploymentConfigurationDictionary : IDictionary<string, IDeploymentConfiguration>,
ICollection<KeyValuePair<string, IDeploymentConfiguration>>, IEnumerable<KeyValuePair<string, IDeploymentConfiguration>>,
IEnumerable
The IDeploymentConfigurationDictionary type exposes the following members.
Properties
Name | Description | |
---|---|---|
Count | Gets the number of elements contained in the ICollection. (Inherited from ICollection<KeyValuePair<String, IDeploymentConfiguration>>.) | |
IsReadOnly | Gets a value indicating whether the ICollection is read-only. (Inherited from ICollection<KeyValuePair<String, IDeploymentConfiguration>>.) | |
Item | Gets or sets the element with the specified key. (Inherited from IDictionary<String, IDeploymentConfiguration>.) | |
Keys | Gets an ICollection containing the keys of the IDictionary. (Inherited from IDictionary<String, IDeploymentConfiguration>.) | |
Values | Gets an ICollection containing the values in the IDictionary. (Inherited from IDictionary<String, IDeploymentConfiguration>.) |
Top
Methods
Name | Description | |
---|---|---|
Add(UTP) | Adds an item to the ICollection. (Inherited from ICollection<KeyValuePair<String, IDeploymentConfiguration>>.) | |
Add(String) | Adds a deployment configuration to the dictionary. The deployment configuration added by using this method is not stored in the project file or user file. | |
Add(UTP, UTP) | Adds an element with the provided key and value to the IDictionary. (Inherited from IDictionary<String, IDeploymentConfiguration>.) | |
Add(String, IEnumerable<String>, IEnumerable<String>) | Adds a deployment configuration to the dictionary. The deployment configuration added by using this method is not stored in the project file or user file. | |
Clear | Removes all items from the ICollection. (Inherited from ICollection<KeyValuePair<String, IDeploymentConfiguration>>.) | |
Contains | Determines whether the ICollection contains a specific value. (Inherited from ICollection<KeyValuePair<String, IDeploymentConfiguration>>.) | |
ContainsKey | Determines whether the IDictionary contains an element with the specified key. (Inherited from IDictionary<String, IDeploymentConfiguration>.) | |
CopyTo | Copies the elements of the ICollection to an Array, starting at a particular Array index. (Inherited from ICollection<KeyValuePair<String, IDeploymentConfiguration>>.) | |
GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerable<KeyValuePair<String, IDeploymentConfiguration>>.) | |
Remove(UTP) | Removes the element with the specified key from the IDictionary. (Inherited from IDictionary<String, IDeploymentConfiguration>.) | |
Remove(UTP) | Removes the first occurrence of a specific object from the ICollection. (Inherited from ICollection<KeyValuePair<String, IDeploymentConfiguration>>.) | |
TryGetValue | Gets the value associated with the specified key. (Inherited from IDictionary<String, IDeploymentConfiguration>.) |
Top