StreamLink.NET
CreateType3HttpsConnection Method (host, port)
StreamLink.NETCaplin.StreamLink.ConfigurationSimpleConfigurationCreateType3HttpsConnection(String, Int32)
Creates a IStreamLinkConfiguration for a type 3 connection using HTTPS protocol
Declaration Syntax
C#Visual BasicVisual C++
public static IStreamLinkConfiguration CreateType3HttpsConnection(
	string host,
	int port
)
Public Shared Function CreateType3HttpsConnection ( _
	host As String, _
	port As Integer _
) As IStreamLinkConfiguration
public:
static IStreamLinkConfiguration^ CreateType3HttpsConnection(
	String^ host, 
	int port
)
Parameters
host (String)
the host
port (Int32)
the port
Return Value
a IStreamLinkConfiguration object
Examples
CopyC#
using Caplin.StreamLink;
using Caplin.StreamLink.Configuration;

namespace StreamLinkExamples.Basics
{
    public class CreateType3HttpsConnectionConfiguration
    {
        public static void CreateType3HttpsConnectionConfigurationExample()
        {
            IStreamLinkConfiguration config =
                SimpleConfiguration.CreateType3HttpsConnection("localhost", 8080);
        }
    }
}

Assembly: Caplin.StreamLink (Module: Caplin.StreamLink) Version: 5.0.23.0 (5.0.23.0)