UriKind 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
定義不同種類的 URI。
public enum class UriKind
public enum UriKind
type UriKind =
Public Enum UriKind
- 繼承
欄位
Absolute | 1 | URI 是絕對的。 |
Relative | 2 | URI 是相對的。 |
RelativeOrAbsolute | 0 | URI 種類是不確定的。 |
備註
絕對 URI 是由資源 (範例的完整參考所描述: http://www.contoso.com/index.html
) ,而相對 URI 則取決於先前定義的基底 URI (範例: /index.html
) 。
下列清單顯示一些使用列舉的 UriKind
API:
- Uri.Uri(String, UriKind)
- Uri.IsWellFormedUriString(String, UriKind)
- Uri.TryCreate(String, UriKind, Uri)