CodeTypeDeclaration
CodeTypeDeclaration
CodeTypeDeclaration
CodeTypeDeclaration
Class
Definition
Represents a type declaration for a class, structure, interface, or enumeration.
public ref class CodeTypeDeclaration : System::CodeDom::CodeTypeMember
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Serializable]
public class CodeTypeDeclaration : System.CodeDom.CodeTypeMember
type CodeTypeDeclaration = class
inherit CodeTypeMember
Public Class CodeTypeDeclaration
Inherits CodeTypeMember
- Inheritance
-
CodeTypeDeclarationCodeTypeDeclarationCodeTypeDeclarationCodeTypeDeclaration
- Derived
- Attributes
Examples
This example demonstrates using a CodeTypeDeclaration to declare a type.
// Creates a new type declaration.
// name parameter indicates the name of the type.
CodeTypeDeclaration^ newType = gcnew CodeTypeDeclaration( "TestType" );
// Sets the member attributes for the type to private.
newType->Attributes = MemberAttributes::Private;
// Sets a base class which the type inherits from.
newType->BaseTypes->Add( "BaseType" );
// A C# code generator produces the following source code for the preceeding example code:
// class TestType : BaseType
// {
// }
// Creates a new type declaration.
CodeTypeDeclaration newType = new CodeTypeDeclaration(
// name parameter indicates the name of the type.
"TestType");
// Sets the member attributes for the type to private.
newType.Attributes = MemberAttributes.Private;
// Sets a base class which the type inherits from.
newType.BaseTypes.Add( "BaseType" );
// A C# code generator produces the following source code for the preceeding example code:
// class TestType : BaseType
// {
// }
' Creates a new type declaration.
Dim newType As New CodeTypeDeclaration("TestType")
' name parameter indicates the name of the type.
' Sets the member attributes for the type to private.
newType.Attributes = MemberAttributes.Private
' Sets a base class which the type inherits from.
newType.BaseTypes.Add("BaseType")
' A Visual Basic code generator produces the following source code for the preceeding example code:
' Class TestType
' Inherits BaseType
' End Class
Remarks
CodeTypeDeclaration can be used to represent code that declares a class, structure, interface, or enumeration. CodeTypeDeclaration can be used to declare a type that is nested within another type.
The BaseTypes property specifies the base type or base types of the type being declared. The Members property contains the type members, which can include methods, fields, properties, comments and other types. The TypeAttributes property indicates the TypeAttributes values for the type declaration, which indicate the type category of the type. The IsClass, IsStruct, IsEnum, and IsInterface methods indicate whether the type is a class, structure, enumeration, or interface type, respectively.
Note
Some programming languages only support the declaration of reference types, or classes. To check a language-specific CodeDOM code generator for support for declaring interfaces, enumerations, or value types, call the Supports method to test for the appropriate GeneratorSupport flags. DeclareInterfaces indicates support for interfaces, DeclareEnums indicates support for enumerations, and DeclareValueTypes indicates support for value types such as structures.
You can build a class or a structure implementation in one complete declaration, or spread the implementation across multiple declarations. The IsPartial property indicates whether the type declaration is complete or partial. Not all code generators support partial type declarations, so you should test for this support by calling the Supports method with the flag PartialTypes.
Constructors
CodeTypeDeclaration() CodeTypeDeclaration() CodeTypeDeclaration() CodeTypeDeclaration() |
Initializes a new instance of the CodeTypeDeclaration class. |
CodeTypeDeclaration(String) CodeTypeDeclaration(String) CodeTypeDeclaration(String) CodeTypeDeclaration(String) |
Initializes a new instance of the CodeTypeDeclaration class with the specified name. |
Properties
Attributes Attributes Attributes Attributes |
Gets or sets the attributes of the member. (Inherited from CodeTypeMember) |
BaseTypes BaseTypes BaseTypes BaseTypes |
Gets the base types of the type. |
Comments Comments Comments Comments |
Gets the collection of comments for the type member. (Inherited from CodeTypeMember) |
CustomAttributes CustomAttributes CustomAttributes CustomAttributes |
Gets or sets the custom attributes of the member. (Inherited from CodeTypeMember) |
EndDirectives EndDirectives EndDirectives EndDirectives |
Gets the end directives for the member. (Inherited from CodeTypeMember) |
IsClass IsClass IsClass IsClass |
Gets or sets a value indicating whether the type is a class or reference type. |
IsEnum IsEnum IsEnum IsEnum |
Gets or sets a value indicating whether the type is an enumeration. |
IsInterface IsInterface IsInterface IsInterface |
Gets or sets a value indicating whether the type is an interface. |
IsPartial IsPartial IsPartial IsPartial |
Gets or sets a value indicating whether the type declaration is complete or partial. |
IsStruct IsStruct IsStruct IsStruct |
Gets or sets a value indicating whether the type is a value type (struct). |
LinePragma LinePragma LinePragma LinePragma |
Gets or sets the line on which the type member statement occurs. (Inherited from CodeTypeMember) |
Members Members Members Members |
Gets the collection of class members for the represented type. |
Name Name Name Name |
Gets or sets the name of the member. (Inherited from CodeTypeMember) |
StartDirectives StartDirectives StartDirectives StartDirectives |
Gets the start directives for the member. (Inherited from CodeTypeMember) |
TypeAttributes TypeAttributes TypeAttributes TypeAttributes |
Gets or sets the attributes of the type. |
TypeParameters TypeParameters TypeParameters TypeParameters |
Gets the type parameters for the type declaration. |
UserData UserData UserData UserData |
Gets the user-definable data for the current object. (Inherited from CodeObject) |
Events
PopulateBaseTypes PopulateBaseTypes PopulateBaseTypes PopulateBaseTypes |
Occurs when the BaseTypes collection is accessed for the first time. |
PopulateMembers PopulateMembers PopulateMembers PopulateMembers |
Occurs when the Members collection is accessed for the first time. |
Methods
Equals(Object) Equals(Object) Equals(Object) Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() GetHashCode() GetHashCode() GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() GetType() GetType() GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() MemberwiseClone() MemberwiseClone() MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() ToString() ToString() ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Applies to
See also
Feedback
We'd love to hear your thoughts. Choose the type you'd like to provide:
Our feedback system is built on GitHub Issues. Read more on our blog.
Loading feedback...