Click here to Skip to main content
15,883,873 members
Articles / Web Development / HTML

Asp.Net SignalR Chat Room

Rate me:
Please Sign up or sign in to vote.
4.92/5 (160 votes)
14 Mar 2013CPOL5 min read 533.6K   57.7K   221  
This article helps you to understand the ASP.NET SignalR API and create a chat room using it.
<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>
    <name>Microsoft.AspNet.SignalR.SystemWeb</name>
  </assembly>
  <members>
    <member name="T:Microsoft.AspNet.SignalR.RequestExtensions"></member>
    <member name="M:Microsoft.AspNet.SignalR.RequestExtensions.GetHttpContext(Microsoft.AspNet.SignalR.IRequest)"></member>
    <member name="T:Microsoft.AspNet.SignalR.SystemWeb.Infrastructure.BuildManagerAssemblyLocator"></member>
    <member name="M:Microsoft.AspNet.SignalR.SystemWeb.Infrastructure.BuildManagerAssemblyLocator.#ctor">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.SystemWeb.Infrastructure.BuildManagerAssemblyLocator" /> class.</summary>
    </member>
    <member name="M:Microsoft.AspNet.SignalR.SystemWeb.Infrastructure.BuildManagerAssemblyLocator.GetAssemblies"></member>
    <member name="T:Microsoft.AspNet.SignalR.SystemWeb.Infrastructure.MachineKeyProtectedData"></member>
    <member name="M:Microsoft.AspNet.SignalR.SystemWeb.Infrastructure.MachineKeyProtectedData.#ctor"></member>
    <member name="M:Microsoft.AspNet.SignalR.SystemWeb.Infrastructure.MachineKeyProtectedData.Protect(System.String,System.String)">
      <returns>Returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="M:Microsoft.AspNet.SignalR.SystemWeb.Infrastructure.MachineKeyProtectedData.Unprotect(System.String,System.String)">
      <returns>Returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="T:System.Web.Routing.SignalRRouteExtensions"></member>
    <member name="M:System.Web.Routing.SignalRRouteExtensions.MapConnection``1(System.Web.Routing.RouteCollection,System.String,System.String)">
      <summary>Maps a <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection" /> with the default dependency resolver to the specified path.</summary>
      <returns>The registered route.</returns>
      <param name="routes">The route table.</param>
      <param name="name">The name of the route.</param>
      <param name="url">The path of the route.</param>
      <typeparam name="T">The type of <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection" /></typeparam>
    </member>
    <member name="M:System.Web.Routing.SignalRRouteExtensions.MapConnection``1(System.Web.Routing.RouteCollection,System.String,System.String,Microsoft.AspNet.SignalR.ConnectionConfiguration)">
      <summary>Maps a <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection" /> with the default dependency resolver to the specified path.</summary>
      <returns>The registered route.</returns>
      <param name="routes">The route table.</param>
      <param name="name">The name of the route.</param>
      <param name="url">The path of the route.</param>
      <param name="configuration">Configuration options.</param>
      <typeparam name="T">The type of <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection" /></typeparam>
    </member>
    <member name="M:System.Web.Routing.SignalRRouteExtensions.MapConnection(System.Web.Routing.RouteCollection,System.String,System.String,System.Type,Microsoft.AspNet.SignalR.ConnectionConfiguration)">
      <summary>Maps a <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection" /> with the default dependency resolver to the specified path.</summary>
      <returns>The registered route.</returns>
      <param name="routes">The route table.</param>
      <param name="name">The name of the route.</param>
      <param name="url">The path of the route.</param>
      <param name="type">The type of <see cref="T:Microsoft.AspNet.SignalR.PersistentConnection" />.</param>
      <param name="configuration">Configuration options.</param>
    </member>
    <member name="M:System.Web.Routing.SignalRRouteExtensions.MapHubs(System.Web.Routing.RouteCollection)">
      <summary>Initializes the default hub route (/signalr).</summary>
      <returns>The registered route.</returns>
      <param name="routes">The route table.</param>
    </member>
    <member name="M:System.Web.Routing.SignalRRouteExtensions.MapHubs(System.Web.Routing.RouteCollection,Microsoft.AspNet.SignalR.HubConfiguration)">
      <summary>Initializes the default hub route (/signalr).</summary>
      <returns>The registered route.</returns>
      <param name="routes">The route table.</param>
      <param name="configuration">Configuration options.</param>
    </member>
    <member name="M:System.Web.Routing.SignalRRouteExtensions.MapHubs(System.Web.Routing.RouteCollection,System.String,Microsoft.AspNet.SignalR.HubConfiguration)">
      <summary>Initializes the default hub route (/signalr).</summary>
      <returns>The registered route.</returns>
      <param name="routes">The route table.</param>
      <param name="path">The path of the route.</param>
      <param name="configuration">Configuration options.</param>
    </member>
  </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
Pakistan Pakistan
Passion and positive dedication is essential part of success. I believe on hardworking and sharing knowledge with others. I always try to be a better than I am and think positive for positive result.

My Blogs

My Linked-In Profile

Comments and Discussions