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
回 。