TypeBuilder.DefineInitializedData(String, Byte[], FieldAttributes) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ポータブル実行可能 (PE) ファイルの .sdata セクションの初期化済みデータ フィールドを定義します。
public:
System::Reflection::Emit::FieldBuilder ^ DefineInitializedData(System::String ^ name, cli::array <System::Byte> ^ data, System::Reflection::FieldAttributes attributes);
public System.Reflection.Emit.FieldBuilder DefineInitializedData (string name, byte[] data, System.Reflection.FieldAttributes attributes);
member this.DefineInitializedData : string * byte[] * System.Reflection.FieldAttributes -> System.Reflection.Emit.FieldBuilder
Public Function DefineInitializedData (name As String, data As Byte(), attributes As FieldAttributes) As FieldBuilder
パラメーター
- name
- String
データを参照するために使用する名前。
name
に埋め込み null 値を含めることはできません。
- data
- Byte[]
データの blob。
- attributes
- FieldAttributes
フィールドの属性。
戻り値
データを参照するフィールド。
例外
name
または data
が null
です。
CreateType() は以前に呼び出されています。
注釈
パラメーターに を含FieldAttributes.Static
めなくても、このメソッドで作成するフィールドは static
になりますattributes
。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET