CodeIdentifiers.IsInUse(String) Method

Definition

Determines whether a specified name is already being used within the CodeIdentifiers instance's scope.

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

public:
 bool IsInUse(System::String ^ identifier);
public bool IsInUse (string identifier);
member this.IsInUse : string -> bool
Public Function IsInUse (identifier As String) As Boolean

Parameters

identifier
String

The name to check for use within the CodeIdentifiers instance's scope.

Returns

true if the name is already in use; otherwise, false.

Remarks

The input name is not unique if it was passed previously to the Add, AddUnique, or AddReserved method, or if it was generated by the AddUnique method.

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