DataSourceIDConverter.ConvertFrom 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的物件轉換成轉換子的原生型別。
public:
override System::Object ^ ConvertFrom(System::ComponentModel::ITypeDescriptorContext ^ context, System::Globalization::CultureInfo ^ culture, System::Object ^ value);
public override object ConvertFrom (System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value);
override this.ConvertFrom : System.ComponentModel.ITypeDescriptorContext * System.Globalization.CultureInfo * obj -> obj
Public Overrides Function ConvertFrom (context As ITypeDescriptorContext, culture As CultureInfo, value As Object) As Object
參數
- context
- ITypeDescriptorContext
實作 ITypeDescriptorContext 的物件,提供內容相關資訊給型別轉換子 (Type Converter),讓型別轉換子執行轉換。
- culture
- CultureInfo
CultureInfo 物件,指定 value
參數的文化特性。
- value
- Object
要轉換的物件。
傳回
value
參數會以字串的型態傳回。
例外狀況
value
是字串以外的值,或是 null
。
備註
如果 value
參數的類型為字串,則會以字串形式傳回。 如果 value
為 null
,則會傳回空字串 ( "" ) 。 否則會擲回 NotSupportedException。
ConvertFrom方法不會使用 context
或 culture
參數。