ImageFormatConverter.ConvertTo Metode
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.
Mengonversi objek yang ditentukan ke tipe yang ditentukan.
public:
override System::Object ^ ConvertTo(System::ComponentModel::ITypeDescriptorContext ^ context, System::Globalization::CultureInfo ^ culture, System::Object ^ value, Type ^ destinationType);
public override object ConvertTo (System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType);
public override object ConvertTo (System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, Type destinationType);
public override object? ConvertTo (System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, Type destinationType);
override this.ConvertTo : System.ComponentModel.ITypeDescriptorContext * System.Globalization.CultureInfo * obj * Type -> obj
Public Overrides Function ConvertTo (context As ITypeDescriptorContext, culture As CultureInfo, value As Object, destinationType As Type) As Object
Parameter
- context
- ITypeDescriptorContext
Konteks pemformat. Objek ini dapat digunakan untuk mendapatkan informasi lebih lanjut tentang lingkungan tempat konverter ini dipanggil. Ini mungkin null
, jadi Anda harus selalu memeriksa. Selain itu, properti pada objek konteks juga dapat mengembalikan null
.
- culture
- CultureInfo
Objek CultureInfo yang menentukan konvensi pemformatan untuk budaya tertentu.
- value
- Object
Objek yang akan dikonversi.
- destinationType
- Type
Jenis untuk mengonversi objek menjadi.
Mengembalikan
Objek yang dikonversi.
Pengecualian
Konversi tidak dapat diselesaikan.
destinationType
adalah null
.
Keterangan
Mengonversi ImageFormatConverter ke dan dari format gambar yang diketahui, seperti yang ditentukan di ImageFormat kelas .
Konversi jenis yang paling umum adalah ke dan dari jenis string. Implementasi default memanggil ToString metode objek jika objek valid dan jika jenis tujuan adalah string
. Jika metode ini tidak dapat mengonversi objek yang ditentukan ke jenis tujuan yang ditentukan, metode ini akan menampilkan NotSupportedException pengecualian.