RuntimeOps.ExpandoTryGetValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
do not use this method
获取 expando 对象中某项的值。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
static bool ExpandoTryGetValue(System::Dynamic::ExpandoObject ^ expando, System::Object ^ indexClass, int index, System::String ^ name, bool ignoreCase, [Runtime::InteropServices::Out] System::Object ^ % value);
[System.Obsolete("do not use this method", true)]
public static bool ExpandoTryGetValue (System.Dynamic.ExpandoObject expando, object indexClass, int index, string name, bool ignoreCase, out object value);
[<System.Obsolete("do not use this method", true)>]
static member ExpandoTryGetValue : System.Dynamic.ExpandoObject * obj * int * string * bool * obj -> bool
Public Shared Function ExpandoTryGetValue (expando As ExpandoObject, indexClass As Object, index As Integer, name As String, ignoreCase As Boolean, ByRef value As Object) As Boolean
参数
- expando
- ExpandoObject
Expando 对象。
- indexClass
- Object
Expando 对象的类。
- index
- Int32
成员的索引。
- name
- String
成员名。
- ignoreCase
- Boolean
如果在匹配名称时应忽略大小写,则为 true;否则为 false。
- value
- Object
包含成员值的输出参数。
返回
如果 expando 对象中存在该成员,则为 true
;否则为 false
。
- 属性