ViewDataInfo 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
ViewDataInfo(Object, Object) |
使用已評估查閱的相關資訊 ViewDataDictionary ,初始化 類別的新實例 ViewDataInfo 。 |
ViewDataInfo(Object, PropertyInfo) |
使用讀取時 Value 評估之 ViewDataDictionary 查閱的相關資訊,初始化 類別的新實例 ViewDataInfo 。
它會在傳遞參數 |
ViewDataInfo(Object, PropertyInfo, Func<Object>) |
使用讀取時 Value 評估之 ViewDataDictionary 查閱的相關資訊,初始化 類別的新實例 ViewDataInfo 。
它會使用 |
ViewDataInfo(Object, Object)
使用已評估查閱的相關資訊 ViewDataDictionary ,初始化 類別的新實例 ViewDataInfo 。
public:
ViewDataInfo(System::Object ^ container, System::Object ^ value);
public ViewDataInfo (object container, object value);
new Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataInfo : obj * obj -> Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataInfo
Public Sub New (container As Object, value As Object)
參數
- value
- Object
評估的值。
適用於
ViewDataInfo(Object, PropertyInfo)
使用讀取時 Value 評估之 ViewDataDictionary 查閱的相關資訊,初始化 類別的新實例 ViewDataInfo 。
它會在傳遞參數 container
時 propertyInfo
使用 GetValue(Object) 來延遲評估值。
public:
ViewDataInfo(System::Object ^ container, System::Reflection::PropertyInfo ^ propertyInfo);
public ViewDataInfo (object container, System.Reflection.PropertyInfo propertyInfo);
new Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataInfo : obj * System.Reflection.PropertyInfo -> Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataInfo
Public Sub New (container As Object, propertyInfo As PropertyInfo)
參數
- propertyInfo
- PropertyInfo
PropertyInfo將用來評估 Value 的 。
適用於
ViewDataInfo(Object, PropertyInfo, Func<Object>)
使用讀取時 Value 評估之 ViewDataDictionary 查閱的相關資訊,初始化 類別的新實例 ViewDataInfo 。
它會使用 valueAccessor
來延遲評估值。
public:
ViewDataInfo(System::Object ^ container, System::Reflection::PropertyInfo ^ propertyInfo, Func<System::Object ^> ^ valueAccessor);
public ViewDataInfo (object container, System.Reflection.PropertyInfo propertyInfo, Func<object> valueAccessor);
new Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataInfo : obj * System.Reflection.PropertyInfo * Func<obj> -> Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataInfo
Public Sub New (container As Object, propertyInfo As PropertyInfo, valueAccessor As Func(Of Object))
參數
- propertyInfo
- PropertyInfo
, PropertyInfo 表示 Value 的 屬性。