ResourceManager.IsResourceReference(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定提供的字符串是否与 ms-resource 字符串 URI 标识符) (资源引用格式匹配。
public:
static bool IsResourceReference(Platform::String ^ resourceReference);
static bool IsResourceReference(winrt::hstring const& resourceReference);
public static bool IsResourceReference(string resourceReference);
function isResourceReference(resourceReference)
Public Shared Function IsResourceReference (resourceReference As String) As Boolean
参数
- resourceReference
-
String
Platform::String
winrt::hstring
要匹配的字符串。
返回
Boolean
bool
true
如果字符串匹配,则为 ;否则为 false
。
注解
匹配 ms-resource 字符串 URI 标识符格式的示例: isResourceReference('ms-resource:Hello')
返回 true
,但 isResourceReference('Hello')
返回 false
。