CodeAttributeDeclaration Klasse
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Stellt eine Attributdeklaration dar.
public ref class CodeAttributeDeclaration
public class CodeAttributeDeclaration
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeAttributeDeclaration
type CodeAttributeDeclaration = class
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeAttributeDeclaration = class
Public Class CodeAttributeDeclaration
- Vererbung
-
CodeAttributeDeclaration
- Attribute
Beispiele
Im folgenden Codebeispiel wird ein CodeAttributeDeclaration erstellt, das ein CLSCompliantAttribute mit dem Argument deklariert false
:
#using <System.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::CodeDom;
using namespace System::CodeDom::Compiler;
int main()
{
// Declare a new type called Class1.
CodeTypeDeclaration^ class1 = gcnew CodeTypeDeclaration("Class1");
// Declare a new code attribute
CodeAttributeDeclaration^ codeAttrDecl = gcnew CodeAttributeDeclaration(
"System.CLSCompliantAttribute",
gcnew CodeAttributeArgument(gcnew CodePrimitiveExpression(false)));
class1->CustomAttributes->Add(codeAttrDecl);
// Create a C# code provider
CodeDomProvider^ provider = CodeDomProvider::CreateProvider("CSharp");
// Generate code and send the output to the console
provider->GenerateCodeFromType(class1, Console::Out, gcnew CodeGeneratorOptions());
}
// The CPP code generator produces the following source code for the preceeding example code:
//
//[System.CLSCompliantAttribute(false)]
//public class Class1 {
//}
using System;
using System.CodeDom;
using System.CodeDom.Compiler;
public class CodeGenExample
{
static void Main()
{
// Declare a new type called Class1.
CodeTypeDeclaration class1 = new CodeTypeDeclaration("Class1");
// Declare a new code attribute
CodeAttributeDeclaration codeAttrDecl = new CodeAttributeDeclaration(
"System.CLSCompliantAttribute",
new CodeAttributeArgument(new CodePrimitiveExpression(false)));
class1.CustomAttributes.Add(codeAttrDecl);
// Create a C# code provider
CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp");
// Generate code and send the output to the console
provider.GenerateCodeFromType(class1, Console.Out, new CodeGeneratorOptions());
}
}
// The C# code generator produces the following source code for the preceeding example code:
//
// [System.CLSCompliantAttribute(false)]
// public class Class1 {
// }
Imports System.CodeDom
Imports System.CodeDom.Compiler
Public Class CodeGenExample
Shared Sub Main
' Declare a new type called Class1.
Dim class1 as New CodeTypeDeclaration("Class1")
' Declare a new code attribute
Dim codeAttrDecl As New CodeAttributeDeclaration(
"System.CLSCompliantAttribute",
new CodeAttributeArgument(new CodePrimitiveExpression(false)))
class1.CustomAttributes.Add(codeAttrDecl)
' Create a Visual Basic code provider
Dim provider As CodeDomProvider = CodeDomProvider.CreateProvider("VisualBasic")
' Generate code and send the output to the console
provider.GenerateCodeFromType(class1, Console.Out, New CodeGeneratorOptions())
End Sub
End Class
' The Visual Basic code generator produces the following source code for the preceeding example code:
'
' <System.CLSCompliantAttribute(false)> _
' Public Class Class1
' End Class
Hinweise
Ein CodeAttributeDeclaration kann verwendet werden, um einen Ausdruck darzustellen, der ein Attribut deklariert. Der Attributname und die Argumente für das Attribut werden als Eigenschaften des Objekts gespeichert. Ein CodeAttributeArgument kann verwendet werden, um jedes Argument für das Attribut darzustellen.
Konstruktoren
CodeAttributeDeclaration() |
Initialisiert eine neue Instanz der CodeAttributeDeclaration-Klasse. |
CodeAttributeDeclaration(CodeTypeReference) |
Initialisiert eine neue Instanz der CodeAttributeDeclaration-Klasse unter Verwendung des angegebenen Codetypverweises. |
CodeAttributeDeclaration(CodeTypeReference, CodeAttributeArgument[]) |
Initialisiert eine neue Instanz der CodeAttributeDeclaration-Klasse unter Verwendung des angegebenen Codetypverweises und der angegebenen Argumente. |
CodeAttributeDeclaration(String) |
Initialisiert eine neue Instanz der CodeAttributeDeclaration-Klasse unter Verwendung des angegebenen Namens. |
CodeAttributeDeclaration(String, CodeAttributeArgument[]) |
Initialisiert eine neue Instanz der CodeAttributeDeclaration-Klasse unter Verwendung des angegebenen Namens und Arguments. |
Eigenschaften
Arguments |
Ruft die Argumente für das Attribut ab. |
AttributeType |
Ruft den Codetypverweis für die Deklaration des Codeattributs ab. |
Name |
Ruft den Namen des zu deklarierenden Attributs ab oder legt diesen fest. |
Methoden
Equals(Object) |
Bestimmt, ob das angegebene Objekt gleich dem aktuellen Objekt ist. (Geerbt von Object) |
GetHashCode() |
Fungiert als Standardhashfunktion. (Geerbt von Object) |
GetType() |
Ruft den Type der aktuellen Instanz ab. (Geerbt von Object) |
MemberwiseClone() |
Erstellt eine flache Kopie des aktuellen Object. (Geerbt von Object) |
ToString() |
Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. (Geerbt von Object) |