CodeIdentifiers Class
Maintains a group of names for related code entities or type mappings that are generated by the .NET Framework's XML serialization infrastructure.
Assembly: System.Xml (in System.Xml.dll)
The CodeIdentifiers type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | CodeIdentifiers() | Initializes a new instance of the CodeIdentifiers class. |
![]() | CodeIdentifiers(Boolean) | Initializes a new instance of the CodeIdentifiers class and determines whether code identifiers are case sensitive. |
| Name | Description | |
|---|---|---|
![]() | UseCamelCasing | Gets or sets a value that indicates whether the instance uses camel case. |
| Name | Description | |
|---|---|---|
![]() | Add | Adds a named code entity or type mapping to the CodeIdentifiers instance's scope. |
![]() | AddReserved | Prevents a specified name from being used within the CodeIdentifiers instance's scope. |
![]() | AddUnique | Adds a named code entity or type mapping to the CodeIdentifiers instance's scope, ensuring that the name is unique within the scope. |
![]() | Clear | Removes all code entities or type mappings, including their names, from the CodeIdentifiers instance's scope. |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | IsInUse | Determines whether a specified name is already being used within the CodeIdentifiers instance's scope. |
![]() | MakeRightCase | Ensures that the input is of the correct case by modifying the name according to the value of the UseCamelCasing property. |
![]() | MakeUnique | Determines whether the input name conflicts with another name within the CodeIdentifiers instance's scope and, if it does, generates a modified string. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Remove | Removes from the CodeIdentifiers instance's scope the code entity or type mapping identified by the input name. |
![]() | RemoveReserved | Removes the input name from the CodeIdentifiers instance's reserved names. |
![]() | ToArray | Returns an array of the code entities or type mappings within the CodeIdentifiers instance's scope. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The following list identifies tools and classes that use the CodeIdentifiers:
The Web Services Description Language Tool (Wsdl.exe), or the ServiceDescriptionImporter class, while generating client proxy classes or abstract server classes from a Web Services Description Language (WSDL) document.
The XML Schema Definition Tool (Xsd.exe) tool while generating classes from XML Schema Definition (XSD) documents.
The ServiceDescriptionReflector class while creating ServiceDescription objects from classes that are identified as Web services via the WebServiceAttribute attribute.
Instead of using the CodeIdentifiers class directly, use the aforementioned tools or classes. If you want to control the names of code entities that are bound to XML Schema or Web service definitions, use the associated attributes.
Depending on its scope, a CodeIdentifiers instance can be used to maintain the names of any of the items in the following list:
Types, methods, or fields.
The parameters and return value of a method corresponding to WSDL input and output messages.
Objects within a ServiceDescription instance that can be serialized to a WSDL document.
Typically, the class is used to avoid naming collisions between code entities within a particular scope, including collisions with the name of a containing entity.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
