HttpChannel im Server

Mantra 1 Reputation point
2021-06-20T19:28:35.803+00:00
 class Program
    {
        static void Main(string[] args)
        {
            HttpChannel channel = new HttpChannel(8090);
            ChannelServices.RegisterChannel(channel, false);
            RemotingConfiguration.RegisterWellKnownServiceType(typeof(CatDao), "CatDao.soap", WellKnownObjectMode.Singleton);
            Console.ReadLine();

        }
    }
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,648 questions
{count} votes