CodeGeneratorOptions Sınıf
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Kod oluşturucu tarafından kullanılan bir dizi seçeneği temsil eder.
public ref class CodeGeneratorOptions
public class CodeGeneratorOptions
type CodeGeneratorOptions = class
Public Class CodeGeneratorOptions
- Devralma
-
CodeGeneratorOptions
Örnekler
// Creates a new CodeGeneratorOptions.
CodeGeneratorOptions^ genOptions = gcnew CodeGeneratorOptions;
// Sets a value indicating that the code generator should insert blank lines between type members.
genOptions->BlankLinesBetweenMembers = true;
// Sets the style of bracing format to use: either S"Block" to start a
// bracing block on the same line as the declaration of its container, or
// S"C" to start the bracing for the block on the following line.
genOptions->BracingStyle = "C";
// Sets a value indicating that the code generator should not append an else,
// catch or finally block, including brackets, at the closing line of a preceeding if or try block.
genOptions->ElseOnClosing = false;
// Sets the String* to indent each line with.
genOptions->IndentString = " ";
// Uses the CodeGeneratorOptions indexer property to set an
// example Object* to the type's String*-keyed ListDictionary.
// Custom ICodeGenerator* implementations can use objects
// in this dictionary to customize process behavior.
genOptions[ "CustomGeneratorOptionStringExampleID" ] = "BuildFlags: /A /B /C /D /E";
// Creates a new CodeGeneratorOptions.
CodeGeneratorOptions genOptions = new CodeGeneratorOptions();
// Sets a value indicating that the code generator should insert blank lines between type members.
genOptions.BlankLinesBetweenMembers = true;
// Sets the style of bracing format to use: either "Block" to start a
// bracing block on the same line as the declaration of its container, or
// "C" to start the bracing for the block on the following line.
genOptions.BracingStyle = "C";
// Sets a value indicating that the code generator should not append an else,
// catch or finally block, including brackets, at the closing line of a preceeding if or try block.
genOptions.ElseOnClosing = false;
// Sets the string to indent each line with.
genOptions.IndentString = " ";
// Uses the CodeGeneratorOptions indexer property to set an
// example object to the type's string-keyed ListDictionary.
// Custom ICodeGenerator implementations can use objects
// in this dictionary to customize process behavior.
genOptions["CustomGeneratorOptionStringExampleID"] = "BuildFlags: /A /B /C /D /E";
' Creates a new CodeGeneratorOptions.
Dim genOptions As New CodeGeneratorOptions()
' Sets a value indicating that the code generator should insert blank lines between type members.
genOptions.BlankLinesBetweenMembers = True
' Sets the style of bracing format to use: either "Block" to start a
' bracing block on the same line as the declaration of its container, or
' "C" to start the bracing for the block on the following line.
genOptions.BracingStyle = "C"
' Sets a value indicating that the code generator should not append an else,
' catch or finally block, including brackets, at the closing line of a preceeding if or try block.
genOptions.ElseOnClosing = False
' Sets the string to indent each line with.
genOptions.IndentString = " "
' Uses the CodeGeneratorOptions indexer property to set an
' example object to the type's string-keyed ListDictionary.
' Custom ICodeGenerator implementations can use objects
' in this dictionary to customize process behavior.
genOptions("CustomGeneratorOptionStringExampleID") = "BuildFlags: /A /B /C /D /E"
Açıklamalar
CodeGeneratorOptions , kod oluşturma sırasında kullanılan seçenekleri belirtmek için uygulamanın ICodeGenerator kod oluşturma yöntemlerine geçirilir.
IndentString özelliği, her aralık girintisi için kullanılacak dizeyi belirtir.
BracingStyle özelliği, kod bloklarının sınırlarını gösteren küme ayraçları için yerleştirme stilini belirtir.
ElseOnClosing özelliği, her if
veya finally
bloğun kapanış satırına köşeli ayraçlar da dahil olmak üzere bir else
, catch
veya try
bloğunun eklenip eklenmeyeceğini belirtir.
BlankLinesBetweenMembers özelliği, üyeler arasına boş satır eklenip eklenmeyeceğini belirtir.
Bir ICodeGenerator uygulama, bir kod oluşturucunun Item[] ek kod oluşturma seçeneklerini bulmak için arayabileceği sözlük dizin oluşturucuyu kullanarak ayarlayabileceğiniz veya veri geçirebileceğiniz özel kod oluşturma seçenekleri sağlayabilir.
Not
Bu sınıf, bir bağlantı talebi ve tüm üyeler için geçerli olan sınıf düzeyinde devralma talebi içerir. Hemen SecurityException çağıranın veya türetilen sınıfın tam güven izni olmadığında bir oluşturulur. Güvenlik talepleri hakkında ayrıntılı bilgi için bkz. Bağlantı Talepleri ve Devralma Talepleri.
Oluşturucular
CodeGeneratorOptions() |
CodeGeneratorOptions sınıfının yeni bir örneğini başlatır. |
Özellikler
BlankLinesBetweenMembers |
Üyeler arasına boş satır eklenip eklenmeyeceğini belirten bir değer alır veya ayarlar. |
BracingStyle |
Bracing için kullanılacak stili alır veya ayarlar. |
ElseOnClosing |
Önceki veya blokların kapanış |
IndentString |
Girintiler için kullanılacak dizeyi alır veya ayarlar. |
Item[String] |
Belirtilen dizindeki nesneyi alır veya ayarlar. |
VerbatimOrder |
Üyelerin üye koleksiyonlarında bulundukları sırayla oluşturulup oluşturulmayacağını belirten bir değer alır veya ayarlar. |
Yöntemler
Equals(Object) |
Belirtilen nesnenin geçerli nesneye eşit olup olmadığını belirler. (Devralındığı yer: Object) |
GetHashCode() |
Varsayılan karma işlevi işlevi görür. (Devralındığı yer: Object) |
GetType() |
Type Geçerli örneğini alır. (Devralındığı yer: Object) |
MemberwiseClone() |
Geçerli Objectöğesinin sığ bir kopyasını oluşturur. (Devralındığı yer: Object) |
ToString() |
Geçerli nesneyi temsil eden dizeyi döndürür. (Devralındığı yer: Object) |