ConfigurationLockCollection.Add(String) Method

Definition

Locks a configuration object by adding it to the collection.

public:
 void Add(System::String ^ name);
public void Add (string name);
member this.Add : string -> unit
Public Sub Add (name As String)

Parameters

name
String

The name of the configuration object.

Exceptions

Occurs when the name does not match an existing configuration object within the collection.

Examples

The following code example demonstrates how to use the Add method. This code example is part of a larger example provided for the ConfigurationLockCollection class.

// Add an attribute to the lock collection.
if (!lockedAttribList.Contains("enabled"))
{
  lockedAttribList.Add("enabled");
}
' Add an attribute to the lock collection.
If Not (lockedAttribList.Contains("enabled")) Then
  lockedAttribList.Add("enabled")
End If

Remarks

Adding a configuration object to the ConfigurationLockCollection collection specifies that the configuration object is locked and cannot be modified until it has been removed from the collection.

Applies to