Answers for "c# check if uri contains"

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

Code answers related to "c# check if uri contains"

C# Answers by Framework

Browse Popular Code Answers by Language