Hier die Empfehlung, sich die Syntax von Uri und Url mal auf Wikipedia reinzuziehen.
Dazu eine kleine Test-Anwendung mit PropertyGrid:
Code
Dazu eine kleine Test-Anwendung mit PropertyGrid:
VB.NET-Quellcode
- Public Class frmUriTester
- Private Sub btToPropertyGrid_Click(sender As System.Object, e As System.EventArgs) Handles btToPropertyGrid.Click
- If txtUrl.Text.IndexOf("://") < 0 Then txtUrl.Text = "http://" + txtUrl.Text
- Dim uri As New Uri(txtUrl.Text, System.UriKind.Absolute)
- PropertyGrid1.SelectedObject = uri
- PropertyGrid1.ExpandAllGridItems()
- End Sub
- End Class