Answers for "valid URL check in c#"

C#
0

valid URL check in c#

public static bool CheckURLValid(this string source) => Uri.TryCreate(source, UriKind.Absolute, out Uri uriResult) && uriResult.Scheme == Uri.UriSchemeHttps;
Posted by: Guest on September-30-2020

C# Answers by Framework

Browse Popular Code Answers by Language