EditorOptionAttribute.TryGetOptionValue(IEnumerable, String, Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定该集合是否包含特定属性及返回特性值。
public:
static bool TryGetOptionValue(System::Collections::IEnumerable ^ attributes, System::String ^ optionName, [Runtime::InteropServices::Out] System::Object ^ % optionValue);
public static bool TryGetOptionValue (System.Collections.IEnumerable attributes, string optionName, out object optionValue);
static member TryGetOptionValue : System.Collections.IEnumerable * string * obj -> bool
Public Shared Function TryGetOptionValue (attributes As IEnumerable, optionName As String, ByRef optionValue As Object) As Boolean
参数
- attributes
- IEnumerable
特性的集合。
- optionName
- String
要检查的特性的名称。
- optionValue
- Object
此方法返回时,将包含该特性的此值。 此参数未经初始化即被传递。
返回
如果指定的特性在集合中找到,则为 true
;否则为 false
。