I found a few answers on StackOverflow about C# URI validator. But can somebody explain me where I'm wrong? There are a few examples on Wikipedia and one is special. I'm not able in C# to make this valid:
ldap://[2001:db8::7]/c=GB?objectClass?one
It's invalid with this method Uri.IsWellFormedUriString("ldap://[2001:db8::7]/c=GB?objectClass?one", UriKind.RelativeOrAbsolute);
Who is wrong? C# or Wikipedia?