System.UriBuilderExtensions.IsSsl C# (CSharp) Méthode

IsSsl() public static méthode

public static IsSsl ( this url, NameValueCollection headers ) : bool
url this
headers System.Collections.Specialized.NameValueCollection
Résultat bool
		public static bool IsSsl(this UriBuilder url, NameValueCollection headers)
		{
			return IsSsl(url.Scheme, headers);
		}

Same methods

UriBuilderExtensions::IsSsl ( string scheme, NameValueCollection headers ) : bool