ModelService.FromName 方法 (ModelItem, String, StringComparison)
[本文档仅供预览,在以后的发行版中可能会发生更改。包含的空白主题用作占位符。]
在派生类中重写时,使用指定的名称和比较条件在指定范围内查找模型项。
命名空间: Microsoft.Windows.Design.Services
程序集: Microsoft.Windows.Design.Interaction(在 Microsoft.Windows.Design.Interaction.dll 中)
语法
声明
Public MustOverride Function FromName ( _
scope As ModelItem, _
name As String, _
comparison As StringComparison _
) As ModelItem
public abstract ModelItem FromName(
ModelItem scope,
string name,
StringComparison comparison
)
public:
virtual ModelItem^ FromName(
ModelItem^ scope,
String^ name,
StringComparison comparison
) abstract
abstract FromName :
scope:ModelItem *
name:string *
comparison:StringComparison -> ModelItem
public abstract function FromName(
scope : ModelItem,
name : String,
comparison : StringComparison
) : ModelItem
参数
- scope
类型:Microsoft.Windows.Design.Model.ModelItem
要搜索的可选范围。
- name
类型:System.String
要定位的项的名称。
- comparison
类型:System.StringComparison
指定如何比较名称。默认为与 Ordinal 属性进行比较。
返回值
类型:Microsoft.Windows.Design.Model.ModelItem
其名称与 name 匹配的模型项;如果未找到匹配项,则为 nulla null reference (Nothing in Visual Basic)。
备注
如果未提供 scope,则根元素被用作范围。 如果提供了 scope,则将层次结构中的最近 INameScope 接口用于定位项。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.Windows.Design.Services 命名空间