ModuleBuilder.DefineInitializedDataCore Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Cuando se reemplaza en una clase derivada, define un campo de datos inicializado en la sección .sdata del archivo ejecutable portátil (PE).
protected:
abstract System::Reflection::Emit::FieldBuilder ^ DefineInitializedDataCore(System::String ^ name, cli::array <System::Byte> ^ data, System::Reflection::FieldAttributes attributes);
protected abstract System.Reflection.Emit.FieldBuilder DefineInitializedDataCore (string name, byte[] data, System.Reflection.FieldAttributes attributes);
abstract member DefineInitializedDataCore : string * byte[] * System.Reflection.FieldAttributes -> System.Reflection.Emit.FieldBuilder
Protected MustOverride Function DefineInitializedDataCore (name As String, data As Byte(), attributes As FieldAttributes) As FieldBuilder
Parámetros
- name
- String
El nombre que se usa para hacer referencia a los datos.
name
no puede contener valores null insertados.
- data
- Byte[]
Objeto binario grande (BLOB) de datos.
- attributes
- FieldAttributes
Combinación bit a bit de los valores de enumeración que especifica los atributos del campo. El valor predeterminado es Static
.
Devoluciones
Campo para hacer referencia a los datos.