Skip to content

Any SignalR module sample available? #2575

Answered by leigh-pointer
wcrisafu asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @wcrisafu
You will need to create a startup.cs in your server project and implent it there.

using Oqtane.Infrastructure;
namespace YourCompany.YourModule;

    public class StartUp : IServerStartup
    {
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
             //throw new NotImplementedException();
        }

        public void ConfigureMvc(IMvcBuilder mvcBuilder)
        {
            //throw new NotImplementedException();
        }

        public void ConfigureServices(IServiceCollection services)
        {
             //throw new NotImplementedException();
        }
}

Replies: 7 comments 9 replies

Comment options

You must be logged in to vote
1 reply
@wcrisafu
Comment options

Answer selected by wcrisafu
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@W6HBR
Comment options

@wcrisafu
Comment options

Comment options

You must be logged in to vote
1 reply
@sbwalker
Comment options

Comment options

You must be logged in to vote
1 reply
@sbwalker
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
4 replies
@bbqchickenrobot
Comment options

@Sen-Gupta
Comment options

@sbwalker
Comment options

@Sen-Gupta
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
6 participants