ReadOnlyTagHelperAttributeList.TryGetAttribute 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擷取第一個 TagHelperAttribute 具有相符 name 的 Name 。
public:
bool TryGetAttribute(System::String ^ name, [Runtime::InteropServices::Out] Microsoft::AspNetCore::Razor::TagHelpers::TagHelperAttribute ^ % attribute);
public bool TryGetAttribute(string name, out Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute attribute);
member this.TryGetAttribute : string * TagHelperAttribute -> bool
Public Function TryGetAttribute (name As String, ByRef attribute As TagHelperAttribute) As Boolean
參數
- name
- String
要取得之 Name 的 TagHelperAttribute。
- attribute
- TagHelperAttribute
當這個方法傳回時,如果找到符合 nameName 的第一個 TagHelperAttribute ,則為 ,否則為 null 。
傳回
true
TagHelperAttribute如果集合中存在具有相同 Name 的 ,則為 ,否則為 false 。
備註
name 不區分大小寫。