Kelas System::Reflection::Assembly

Assembly class

Reflection class describing assembly. Support is limited as the rules are quite different between C# and C++. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class Assembly : public System::Object

Metode

MetodeDeskripsi
Assembly()Konstruktor.
virtual get_CodeBase() constMendapatkan direktori assembly saat ini. Dukungan terbatas.
virtual get_FullName() constMendapatkan nama lengkap assembly.
virtual get_Location() constMendapatkan lokasi assembly. Tidak diimplementasikan.
static GetAssembly(const TypeInfo&)Mendapatkan assembly yang mendefinisikan tipe tertentu.
static GetCallingAssembly()Mendapatkan assembly pemanggil.
static GetEntryAssembly()Mendapatkan assembly entri.
static GetExecutingAssembly()Mendapatkan assembly yang sedang dieksekusi.
virtual GetManifestResourceNames() constMendapatkan nama-nama sumber daya manifest.
virtual GetManifestResourceStream(String) constMendapatkan stream yang terhubung ke sumber daya manifest.
virtual GetName() constMendapatkan nama assembly.
virtual GetTypes() constMendapatkan tipe-tipe yang dideklarasikan oleh assembly.

Lihat Juga