共用方式為


ModelStateDictionary.TryGetValue(String, ModelState) 方法

定義

嘗試取得與指定之索引鍵相關聯的值。

public:
 virtual bool TryGetValue(System::String ^ key, [Runtime::InteropServices::Out] System::Web::ModelBinding::ModelState ^ % value);
public bool TryGetValue (string key, out System.Web.ModelBinding.ModelState value);
abstract member TryGetValue : string * ModelState -> bool
override this.TryGetValue : string * ModelState -> bool
Public Function TryGetValue (key As String, ByRef value As ModelState) As Boolean

參數

key
String

要取得之值的索引鍵。

value
ModelState

如果找到索引鍵,則這個方法傳回時會包含與指定的索引鍵相關聯的值,否則會包含此參數的型別預設值。 這個參數會以未初始化的狀態傳遞。

傳回

Boolean

如果字典中包含具有指定之索引鍵的項目,則為 true,否則為 false

適用於