See Also: Scheme Members
Encapsulates specifics of a protocol scheme such as "http" or "https". Schemes are identified by lowercase names. Supported schemes are typically collected in a Org.Apache.Http.Conn.Schemes.SchemeRegistry.
java Example
Scheme https = new Scheme("https", new MySecureSocketFactory(), 443); SchemeRegistry.DEFAULT.register(https);
For example, to configure support for "https://" URLs, you could write code like the following: