aspnetcore/samples/ClientSample/Program.cs

22 lines
679 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.IO.Pipelines;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.SignalR;
using Microsoft.AspNetCore.SignalR.Client;
using Microsoft.AspNetCore.Sockets.Client;
using Microsoft.Extensions.Logging;
namespace ClientSample
{
public class Program
{
//public static void Main(string[] args) => HubSample.MainAsync(args).Wait();
public static void Main(string[] args) => RawSample.MainAsync(args).Wait();
}
}