CustomAttributeTypedArgument Konstruktor
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menginisialisasi instans baru kelas CustomAttributeTypedArgument.
Overload
CustomAttributeTypedArgument(Object) |
Menginisialisasi instans CustomAttributeTypedArgument baru kelas dengan nilai yang ditentukan. |
CustomAttributeTypedArgument(Type, Object) |
Menginisialisasi instans CustomAttributeTypedArgument baru kelas dengan jenis dan nilai yang ditentukan. |
CustomAttributeTypedArgument(Object)
Menginisialisasi instans CustomAttributeTypedArgument baru kelas dengan nilai yang ditentukan.
public:
CustomAttributeTypedArgument(System::Object ^ value);
public CustomAttributeTypedArgument (object value);
new System.Reflection.CustomAttributeTypedArgument : obj -> System.Reflection.CustomAttributeTypedArgument
Public Sub New (value As Object)
Parameter
- value
- Object
Nilai argumen atribut kustom.
Pengecualian
value
adalah null
.
Keterangan
Parameter value
tidak boleh null
untuk konstruktor ini, karena jenis argumen disimpulkan dari jenis value
. Untuk menentukan null
nilai, gunakan CustomAttributeTypedArgument(Type, Object) konstruktor.
Konstruktor ini untuk digunakan oleh pewaris CustomAttributeTypedArgument kelas. Ini tidak dimaksudkan untuk digunakan dalam kode aplikasi.
Berlaku untuk
CustomAttributeTypedArgument(Type, Object)
Menginisialisasi instans CustomAttributeTypedArgument baru kelas dengan jenis dan nilai yang ditentukan.
public:
CustomAttributeTypedArgument(Type ^ argumentType, System::Object ^ value);
public CustomAttributeTypedArgument (Type argumentType, object value);
public CustomAttributeTypedArgument (Type argumentType, object? value);
new System.Reflection.CustomAttributeTypedArgument : Type * obj -> System.Reflection.CustomAttributeTypedArgument
Public Sub New (argumentType As Type, value As Object)
Parameter
- argumentType
- Type
Jenis argumen atribut kustom.
- value
- Object
Nilai argumen atribut kustom.
Pengecualian
argumentType
adalah null
.
Keterangan
Konstruktor ini untuk digunakan oleh pewaris CustomAttributeTypedArgument kelas. Ini tidak dimaksudkan untuk digunakan dalam kode aplikasi.