34 lines
900 B
C#
34 lines
900 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.Reactive.Disposables;
|
|
using System.Reactive.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.AspNetCore.SignalR.Test.Server
|
|
{
|
|
public class TestHub : Hub
|
|
{
|
|
public string Echo(string message)
|
|
{
|
|
return message;
|
|
}
|
|
|
|
public void ThrowException(string message)
|
|
{
|
|
throw new InvalidOperationException(message);
|
|
}
|
|
|
|
public Task InvokeWithString(string message)
|
|
{
|
|
return Clients.Client(Context.Connection.ConnectionId).InvokeAsync("Message", message);
|
|
}
|
|
|
|
public IObservable<string> Stream()
|
|
{
|
|
return new string[] { "a", "b", "c" }.ToObservable();
|
|
}
|
|
}
|
|
}
|