Skip to content

Instantly share code, notes, and snippets.

@hagbarddenstore
Created June 18, 2014 07:59
Show Gist options
  • Save hagbarddenstore/a799779bb2c7bf00013b to your computer and use it in GitHub Desktop.
Save hagbarddenstore/a799779bb2c7bf00013b to your computer and use it in GitHub Desktop.
var text = txtserver.Text;
if (!string.IsNullOrEmpty(text))
{
IpAddress ipAddress;
Uri url;
if (IpAddress.TryParse(text, out ipAddress))
{
// Valid IP
}
else if (Uri.TryCreate(text, UriKind.Absolute, out url))
{
// Valid URI
}
else
{
// Invalid IP or URI
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment