ResXDataNode.GetValue 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擷取這個節點所儲存的物件。
多載
GetValue(ITypeResolutionService) |
藉由使用型別解析服務,擷取這個節點所儲存的物件。 |
GetValue(AssemblyName[]) |
藉由搜尋指定的組件,擷取這個節點所儲存的物件。 |
GetValue(ITypeResolutionService)
藉由使用型別解析服務,擷取這個節點所儲存的物件。
public:
System::Object ^ GetValue(System::ComponentModel::Design::ITypeResolutionService ^ typeResolver);
public object GetValue (System.ComponentModel.Design.ITypeResolutionService typeResolver);
public object? GetValue (System.ComponentModel.Design.ITypeResolutionService? typeResolver);
member this.GetValue : System.ComponentModel.Design.ITypeResolutionService -> obj
Public Function GetValue (typeResolver As ITypeResolutionService) As Object
參數
- typeResolver
- ITypeResolutionService
在尋找型別轉換子時所要使用的型別解析服務。
傳回
對應至預存值的物件。
例外狀況
找不到對應的型別,或適當型別轉換子無法使用。
備註
如果預存值目前存在於記憶體中,則會直接傳回它。 如果儲存在資源檔案中,而且它不是檔案參考, GetValue 請使用可從字串轉換成適當物件的指定型別解析服務來尋找 TypeConverter 。 如果資源是檔案參考, GetValue 則嘗試將它取消串行化。
適用於
GetValue(AssemblyName[])
藉由搜尋指定的組件,擷取這個節點所儲存的物件。
public:
System::Object ^ GetValue(cli::array <System::Reflection::AssemblyName ^> ^ names);
public object GetValue (System.Reflection.AssemblyName[] names);
public object? GetValue (System.Reflection.AssemblyName[]? names);
member this.GetValue : System.Reflection.AssemblyName[] -> obj
Public Function GetValue (names As AssemblyName()) As Object
參數
- names
- AssemblyName[]
要搜尋物件類型的組件清單。
傳回
對應至預存值的物件。
例外狀況
找不到對應的型別,或適當型別轉換子無法使用。
備註
如果預存值目前存在於記憶體中,則會直接傳回它。 如果儲存在資源檔案中,而且它不是檔案參考, GetValue 請在名稱所識別的元件中尋找物件的對應類型,然後尋找 TypeConverter 可從字串轉換成適當物件的 。 如果資源是檔案參考, GetValue 則嘗試還原串行化它。