CodeIdentifiers.Add(String, Object) Method

Definition

Adds a named code entity or type mapping to the CodeIdentifiers instance's scope.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 void Add(System::String ^ identifier, System::Object ^ value);
public void Add (string identifier, object? value);
public void Add (string identifier, object value);
member this.Add : string * obj -> unit
Public Sub Add (identifier As String, value As Object)

Parameters

identifier
String

A name that is used to index the code entity.

value
Object

The code entity or type mapping information.

Remarks

Unlike the AddUnique method, the Add method does not prevent naming collisions.

If you want to control the names of code entities that are bound to XML Schema or Web service definitions, use the associated attributes rather than creating an instance of the CodeIdentifiers class. For a complete list, see Attributes That Control XML Serialization.

Applies to