ShowIt.ConferenceSession.Run C# (CSharp) Method

Run() public method

public Run ( ) : void
return void
        public void Run()
        {

            NewTOAPIA.GL.GLApplication app = new NewTOAPIA.GL.GLApplication("Share IT");
            app.Run(fModel);
        }
    }

Usage Example

Beispiel #1
0
        static void Main()
        {
            IPEndPoint ep = new IPEndPoint(IPAddress.Parse("239.1.1.1"), 5006);
            ConferenceSession session = new ConferenceSession(ep);

            session.Run();
        }