mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-01-14 01:25:43 -05:00
Remove and ignore packages
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -96,8 +96,7 @@ publish/
|
||||
*.Publish.xml
|
||||
|
||||
# NuGet Packages Directory
|
||||
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
|
||||
#packages/
|
||||
packages/
|
||||
|
||||
# Windows Azure Build Output
|
||||
csx
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,943 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.AspNet.SignalR.Client</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Infrastructure.Disposer">
|
||||
<summary>
|
||||
Helper class to manage disposing a resource at an arbirtary time
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Connection">
|
||||
<summary>
|
||||
Provides client connections for SignalR services.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.IConnection.Proxy">
|
||||
<summary>
|
||||
Gets of sets proxy information for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start">
|
||||
<summary>
|
||||
Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
|
||||
</summary>
|
||||
<returns>A task that represents when the connection has started.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Http.IHttpClient)">
|
||||
<summary>
|
||||
Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
|
||||
</summary>
|
||||
<param name="httpClient">The http client</param>
|
||||
<returns>A task that represents when the connection has started.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Transports.IClientTransport)">
|
||||
<summary>
|
||||
Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
|
||||
</summary>
|
||||
<param name="transport">The transport to use.</param>
|
||||
<returns>A task that represents when the connection has started.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop">
|
||||
<summary>
|
||||
Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.TimeSpan)">
|
||||
<summary>
|
||||
Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
|
||||
<param name="timeout">The timeout</param>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#Disconnect">
|
||||
<summary>
|
||||
Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> without sending an abort message to the server.
|
||||
This function is called after we receive a disconnect message from the server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.String)">
|
||||
<summary>
|
||||
Sends data asynchronously over the connection.
|
||||
</summary>
|
||||
<param name="data">The data to send.</param>
|
||||
<returns>A task that represents when the data has been sent.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.Object)">
|
||||
<summary>
|
||||
Sends an object that will be JSON serialized asynchronously over the connection.
|
||||
</summary>
|
||||
<param name="value">The value to serialize.</param>
|
||||
<returns>A task that represents when the data has been sent.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.AddClientCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)">
|
||||
<summary>
|
||||
Adds a client certificate to the request
|
||||
</summary>
|
||||
<param name="certificate">Client Certificate</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkLastMessage">
|
||||
<summary>
|
||||
Sets LastMessageAt to the current time
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkActive">
|
||||
<summary>
|
||||
Sets LastActiveAt to the current time
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose">
|
||||
<summary>
|
||||
Stop the connection, equivalent to calling connection.stop
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Stop the connection, equivalent to calling connection.stop
|
||||
</summary>
|
||||
<param name="disposing">Set this to true to perform the dispose, false to do nothing</param>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Received">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has received data from the server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Error">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has encountered an error.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Closed">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is stopped.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnecting">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> starts reconnecting after an error.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnected">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> successfully reconnects after a timeout.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.StateChanged">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> state changes.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.ConnectionSlow">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is about to timeout
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.TransportConnectTimeout">
|
||||
<summary>
|
||||
The amount of time a transport will wait (while connecting) before failing.
|
||||
This value is modified by adding the server's TransportConnectTimeout configuration value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#TotalTransportConnectTimeout">
|
||||
<summary>
|
||||
The amount of time a transport will wait (while connecting) before failing.
|
||||
This is the total vaue obtained by adding the server's configuration value and the timeout specified by the user
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#ReconnectWindow">
|
||||
<summary>
|
||||
The maximum amount of time a connection will allow to try and reconnect.
|
||||
This value is equivalent to the summation of the servers disconnect and keep alive timeout values.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#KeepAliveData">
|
||||
<summary>
|
||||
Object to store the various keep alive timeout values
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#LastMessageAt">
|
||||
<summary>
|
||||
The timestamp of the last message received by the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.JsonSerializer">
|
||||
<summary>
|
||||
Gets or sets the serializer used by the connection
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.CookieContainer">
|
||||
<summary>
|
||||
Gets or sets the cookies associated with the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Credentials">
|
||||
<summary>
|
||||
Gets or sets authentication information for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Headers">
|
||||
<summary>
|
||||
Gets and sets headers for the requests
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Proxy">
|
||||
<summary>
|
||||
Gets of sets proxy information for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Url">
|
||||
<summary>
|
||||
Gets the url for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.MessageId">
|
||||
<summary>
|
||||
Gets or sets the last message id for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionId">
|
||||
<summary>
|
||||
Gets or sets the connection id for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionToken">
|
||||
<summary>
|
||||
Gets or sets the connection token for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.GroupsToken">
|
||||
<summary>
|
||||
Gets or sets the groups token for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Items">
|
||||
<summary>
|
||||
Gets a dictionary for storing state for a the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.QueryString">
|
||||
<summary>
|
||||
Gets the querystring specified in the ctor.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.State">
|
||||
<summary>
|
||||
Gets the current <see cref="T:Microsoft.AspNet.SignalR.Client.ConnectionState"/> of the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Connection.DebugTextWriter">
|
||||
<summary>
|
||||
Default text writer
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.Object,System.TimeSpan)">
|
||||
<summary>
|
||||
Initializes a new instance of the HeartBeatMonitor Class
|
||||
</summary>
|
||||
<param name="connection"></param>
|
||||
<param name="connectionStateLock"></param>
|
||||
<param name="beatInterval">How often to check connection status</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Start">
|
||||
<summary>
|
||||
Starts the timer that triggers heartbeats
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat">
|
||||
<summary>
|
||||
Callback function for the timer which determines if we need to notify the user or attempt to reconnect
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat(System.TimeSpan)">
|
||||
<summary>
|
||||
Logic to determine if we need to notify the user or attempt to reconnect
|
||||
</summary>
|
||||
<param name="timeElapsed"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose">
|
||||
<summary>
|
||||
Dispose off the timer
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Dispose off the timer
|
||||
</summary>
|
||||
<param name="disposing"></param>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient">
|
||||
<summary>
|
||||
The default <see cref="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient"/> implementation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient">
|
||||
<summary>
|
||||
A client that can make http request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Initialize(Microsoft.AspNet.SignalR.Client.IConnection)">
|
||||
<summary>
|
||||
Initializes the Http Clients
|
||||
</summary>
|
||||
<param name="connection">Connection</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http GET request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="isLongRunning">Indicates whether it is a long running request</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Post(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http POST request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="postData">form url encoded data.</param>
|
||||
<param name="isLongRunning">Indicates whether it is a long running request</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http GET request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="isLongRunning">Indicates whether the request is long running</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Post(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http POST request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="postData">form url encoded data.</param>
|
||||
<param name="isLongRunning">Indicates whether the request is long running</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.PrepareClientRequest(Microsoft.AspNet.SignalR.Client.Http.HttpWebRequestWrapper)">
|
||||
<summary>
|
||||
Adds certificates, credentials, proxies and cookies to the request
|
||||
</summary>
|
||||
<param name="req">Request object</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.IRequest">
|
||||
<summary>
|
||||
The http request
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.Abort">
|
||||
<summary>
|
||||
Aborts the request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.SetRequestHeaders(System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Set Request Headers
|
||||
</summary>
|
||||
<param name="headers">request headers</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.UserAgent">
|
||||
<summary>
|
||||
The user agent for this request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.Accept">
|
||||
<summary>
|
||||
The accept header for this request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.IResponse">
|
||||
<summary>
|
||||
The http response.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IResponse.GetStream">
|
||||
<summary>
|
||||
Gets the steam that represents the response body.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.HubConnection">
|
||||
<summary>
|
||||
A <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> for interacting with Hubs.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
<param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
<param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.CreateHubProxy(System.String)">
|
||||
<summary>
|
||||
Creates an <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> for the hub with the specified name.
|
||||
</summary>
|
||||
<param name="hubName">The name of the hub.</param>
|
||||
<returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.HubProxyExtensions">
|
||||
<summary>
|
||||
Extensions to the <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.GetValue``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
|
||||
<summary>
|
||||
Gets the value of a state variable.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the state variable</typeparam>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="name">The name of the state variable.</param>
|
||||
<returns>The value of the state variable.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action)">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``2(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``3(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``4(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{System.Object})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``5(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3,``4})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``6(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3,``4,``5})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``7(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3,``4,``5,``6})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.Observe(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
|
||||
<summary>
|
||||
Registers a <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> event has an <see cref="T:IObservable{T}"/>.
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<returns>An <see cref="T:IObservable{object[]}"/>.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.IHubProxy">
|
||||
<summary>
|
||||
A client side proxy for a server side hub.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke(System.String,System.Object[])">
|
||||
<summary>
|
||||
Executes a method on the server side hub asynchronously.
|
||||
</summary>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="args">The arguments</param>
|
||||
<returns>A task that represents when invocation returned.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``1(System.String,System.Object[])">
|
||||
<summary>
|
||||
Executes a method on the server side hub asynchronously.
|
||||
</summary>
|
||||
<typeparam name="T">The type of result returned from the hub</typeparam>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="args">The arguments</param>
|
||||
<returns>A task that represents when invocation returned.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Subscribe(System.String)">
|
||||
<summary>
|
||||
Registers an event for the hub.
|
||||
</summary>
|
||||
<param name="eventName">The name of the event</param>
|
||||
<returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription"/>.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.Item(System.String)">
|
||||
<summary>
|
||||
Gets or sets state on the hub.
|
||||
</summary>
|
||||
<param name="name">The name of the field.</param>
|
||||
<returns>The value of the field</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.JsonSerializer">
|
||||
<summary>
|
||||
Gets the serializer used by the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Hubs.HubResult">
|
||||
<summary>
|
||||
Represents the result of a hub invocation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Id">
|
||||
<summary>
|
||||
The callback identifier
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Result">
|
||||
<summary>
|
||||
The return value of the hub
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.IsHubException">
|
||||
<summary>
|
||||
Indicates whether the Error is a <see cref="T:Microsoft.AspNet.SignalR.Client.HubException"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Error">
|
||||
<summary>
|
||||
The error message returned from the hub invocation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.ErrorData">
|
||||
<summary>
|
||||
Extra error data
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.State">
|
||||
<summary>
|
||||
The caller state from this hub.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Hubservable">
|
||||
<summary>
|
||||
<see cref="T:System.IObservable{object[]}"/> implementation of a hub event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription">
|
||||
<summary>
|
||||
Represents a subscription to a hub method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.ErrorExtensions.GetError(System.Exception)">
|
||||
<summary>
|
||||
Simplifies error recognition by unwrapping complex exceptions.
|
||||
</summary>
|
||||
<param name="ex">The thrown exception.</param>
|
||||
<returns>An unwrapped exception in the form of a SignalRError.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.SignalRError">
|
||||
<summary>
|
||||
Represents errors that are thrown by the SignalR client
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.#ctor(System.Exception)">
|
||||
<summary>
|
||||
Create custom SignalR based error.
|
||||
</summary>
|
||||
<param name="exception">The exception to unwrap</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.ToString">
|
||||
<summary>
|
||||
Allow a SignalRError to be directly written to an output stream
|
||||
</summary>
|
||||
<returns>Exception error</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.Dispose">
|
||||
<summary>
|
||||
Dispose of the response
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.StatusCode">
|
||||
<summary>
|
||||
The status code of the error (if it was a WebException)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.ResponseBody">
|
||||
<summary>
|
||||
The response body of the error, if it was a WebException and the response is readable
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.Exception">
|
||||
<summary>
|
||||
The unwrapped underlying exception
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Infrastructure.UrlEncoder">
|
||||
<summary>
|
||||
Helpers for encoding URI query components.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.KeepAliveData">
|
||||
<summary>
|
||||
Class to store all the Keep Alive properties
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Infrastructure.ThreadSafeInvoker">
|
||||
<summary>
|
||||
Allows for thread safe invocation of a delegate.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_CertsCanOnlyBeAddedWhenDisconnected">
|
||||
<summary>
|
||||
Looks up a localized string similar to Client Certificates cannot be added after the connection has started..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackArgumentTypeMismatch">
|
||||
<summary>
|
||||
Looks up a localized string similar to A client callback for event {0} with {1} argument(s) was found, however an error occurred because {2}.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackInvalidNumberOfArguments">
|
||||
<summary>
|
||||
Looks up a localized string similar to A client callback for event {0} with {1} argument(s) could not be found.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionCancelled">
|
||||
<summary>
|
||||
Looks up a localized string similar to The connection was stopped before it could be started..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionHasNotBeenEstablished">
|
||||
<summary>
|
||||
Looks up a localized string similar to The connection has not been established..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentConnectionDisconnected">
|
||||
<summary>
|
||||
Looks up a localized string similar to Data cannot be sent because the connection is in the disconnected state. Call start before sending any data..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentDuringWebSocketReconnect">
|
||||
<summary>
|
||||
Looks up a localized string similar to Data cannot be sent because the WebSocket connection is reconnecting..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_IncompatibleProtocolVersion">
|
||||
<summary>
|
||||
Looks up a localized string similar to You are using a version of the client that isn't compatible with the server. Client version {0}, server version {1}..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProxiesCannotBeAddedConnectionStarted">
|
||||
<summary>
|
||||
Looks up a localized string similar to A HubProxy cannot be added after the connection has been started..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ServerNegotiationFailed">
|
||||
<summary>
|
||||
Looks up a localized string similar to Server negotiation failed..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TaskCancelledException">
|
||||
<summary>
|
||||
Looks up a localized string similar to Request failed - task cancelled..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportFailedToConnect">
|
||||
<summary>
|
||||
Looks up a localized string similar to Transport failed trying to connect..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportTimedOutTryingToConnect">
|
||||
<summary>
|
||||
Looks up a localized string similar to Transport timed out trying to connect.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_UrlCantContainQueryStringDirectly">
|
||||
<summary>
|
||||
Looks up a localized string similar to Url cannot contain query string directly. Pass query string values in using available overload..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_ConnectionClosed">
|
||||
<summary>
|
||||
Looks up a localized string similar to Connection was disconnected before invocation result was received..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_Reconnecting">
|
||||
<summary>
|
||||
Looks up a localized string similar to Connection started reconnecting before invocation result was received..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.#ctor(System.IO.Stream)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader"/> class.
|
||||
</summary>
|
||||
<param name="stream">The stream to read asynchronously payloads from.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Start">
|
||||
<summary>
|
||||
Starts the reader.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Close">
|
||||
<summary>
|
||||
Closes the connection and the underlying stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Opened">
|
||||
<summary>
|
||||
Invoked when the stream is open.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Closed">
|
||||
<summary>
|
||||
Invoked when the reader is closed while in the Processing state.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Data">
|
||||
<summary>
|
||||
Invoked when there's a message if received in the stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.Start">
|
||||
<summary>
|
||||
Starts the Polling Request Handler.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.Stop">
|
||||
<summary>
|
||||
Fully stops the Polling Request Handlers.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.Abort">
|
||||
<summary>
|
||||
Aborts the currently active polling request, does not stop the Polling Request Handler.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.ResolveUrl">
|
||||
<summary>
|
||||
Used to generate the Url that is posted to for the poll.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.PrepareRequest">
|
||||
<summary>
|
||||
Allows modification of the IRequest parameter before using it in a poll.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnMessage">
|
||||
<summary>
|
||||
Sends the string based message to the callback.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnError">
|
||||
<summary>
|
||||
If the poll errors OnError gets triggered and passes the exception.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnPolling">
|
||||
<summary>
|
||||
Triggers when the polling request is in flight
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnAfterPoll">
|
||||
<summary>
|
||||
Triggers before a new polling request is attempted.
|
||||
Passes in an exception if the Poll errored, null otherwise.
|
||||
Expects the return as a task in order to allow modification of timing for subsequent polls.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnAbort">
|
||||
<summary>
|
||||
Fired when the current poll request was aborted, passing in the soon to be aborted request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader">
|
||||
<summary>
|
||||
Event source implementation for .NET. This isn't to the spec but it's enough to support SignalR's
|
||||
server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.IO.Stream)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader"/> class.
|
||||
</summary>
|
||||
<param name="connection">The connection associated with this event source</param>
|
||||
<param name="stream">The stream to read event source payloads from.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.Message">
|
||||
<summary>
|
||||
Invoked when there's a message if received in the stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.StateChange">
|
||||
<summary>
|
||||
Represents a change in the connection state.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.StateChange.#ctor(Microsoft.AspNet.SignalR.Client.ConnectionState,Microsoft.AspNet.SignalR.Client.ConnectionState)">
|
||||
<summary>
|
||||
Creates a new stance of <see cref="T:Microsoft.AspNet.SignalR.Client.StateChange"/>.
|
||||
</summary>
|
||||
<param name="oldState">The old state of the connection.</param>
|
||||
<param name="newState">The new state of the connection.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.StateChange.OldState">
|
||||
<summary>
|
||||
Gets the old state of the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.StateChange.NewState">
|
||||
<summary>
|
||||
Gets the new state of the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AutoTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the active transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.HttpBasedTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ReconnectDelay">
|
||||
<summary>
|
||||
The time to wait after a connection drops to try reconnecting.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ErrorDelay">
|
||||
<summary>
|
||||
The time to wait after an error happens to continue polling.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.ReconnectDelay">
|
||||
<summary>
|
||||
The time to wait after a connection drops to try reconnecting.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -1,965 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.AspNet.SignalR.Client</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Connection">
|
||||
<summary>
|
||||
Provides client connections for SignalR services.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.IConnection.Proxy">
|
||||
<summary>
|
||||
Gets of sets proxy information for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start">
|
||||
<summary>
|
||||
Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
|
||||
</summary>
|
||||
<returns>A task that represents when the connection has started.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Http.IHttpClient)">
|
||||
<summary>
|
||||
Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
|
||||
</summary>
|
||||
<param name="httpClient">The http client</param>
|
||||
<returns>A task that represents when the connection has started.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Transports.IClientTransport)">
|
||||
<summary>
|
||||
Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
|
||||
</summary>
|
||||
<param name="transport">The transport to use.</param>
|
||||
<returns>A task that represents when the connection has started.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop">
|
||||
<summary>
|
||||
Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.TimeSpan)">
|
||||
<summary>
|
||||
Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
|
||||
<param name="timeout">The timeout</param>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#Disconnect">
|
||||
<summary>
|
||||
Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> without sending an abort message to the server.
|
||||
This function is called after we receive a disconnect message from the server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.String)">
|
||||
<summary>
|
||||
Sends data asynchronously over the connection.
|
||||
</summary>
|
||||
<param name="data">The data to send.</param>
|
||||
<returns>A task that represents when the data has been sent.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.Object)">
|
||||
<summary>
|
||||
Sends an object that will be JSON serialized asynchronously over the connection.
|
||||
</summary>
|
||||
<param name="value">The value to serialize.</param>
|
||||
<returns>A task that represents when the data has been sent.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.AddClientCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)">
|
||||
<summary>
|
||||
Adds a client certificate to the request
|
||||
</summary>
|
||||
<param name="certificate">Client Certificate</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkLastMessage">
|
||||
<summary>
|
||||
Sets LastMessageAt to the current time
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkActive">
|
||||
<summary>
|
||||
Sets LastActiveAt to the current time
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose">
|
||||
<summary>
|
||||
Stop the connection, equivalent to calling connection.stop
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Stop the connection, equivalent to calling connection.stop
|
||||
</summary>
|
||||
<param name="disposing">Set this to true to perform the dispose, false to do nothing</param>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Received">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has received data from the server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Error">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has encountered an error.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Closed">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is stopped.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnecting">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> starts reconnecting after an error.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnected">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> successfully reconnects after a timeout.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.StateChanged">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> state changes.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.ConnectionSlow">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is about to timeout
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.TransportConnectTimeout">
|
||||
<summary>
|
||||
The amount of time a transport will wait (while connecting) before failing.
|
||||
This value is modified by adding the server's TransportConnectTimeout configuration value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#TotalTransportConnectTimeout">
|
||||
<summary>
|
||||
The amount of time a transport will wait (while connecting) before failing.
|
||||
This is the total vaue obtained by adding the server's configuration value and the timeout specified by the user
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#ReconnectWindow">
|
||||
<summary>
|
||||
The maximum amount of time a connection will allow to try and reconnect.
|
||||
This value is equivalent to the summation of the servers disconnect and keep alive timeout values.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#KeepAliveData">
|
||||
<summary>
|
||||
Object to store the various keep alive timeout values
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#LastMessageAt">
|
||||
<summary>
|
||||
The timestamp of the last message received by the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.JsonSerializer">
|
||||
<summary>
|
||||
Gets or sets the serializer used by the connection
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.CookieContainer">
|
||||
<summary>
|
||||
Gets or sets the cookies associated with the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Credentials">
|
||||
<summary>
|
||||
Gets or sets authentication information for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Headers">
|
||||
<summary>
|
||||
Gets and sets headers for the requests
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Proxy">
|
||||
<summary>
|
||||
Gets of sets proxy information for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Url">
|
||||
<summary>
|
||||
Gets the url for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.MessageId">
|
||||
<summary>
|
||||
Gets or sets the last message id for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionId">
|
||||
<summary>
|
||||
Gets or sets the connection id for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionToken">
|
||||
<summary>
|
||||
Gets or sets the connection token for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.GroupsToken">
|
||||
<summary>
|
||||
Gets or sets the groups token for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Items">
|
||||
<summary>
|
||||
Gets a dictionary for storing state for a the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.QueryString">
|
||||
<summary>
|
||||
Gets the querystring specified in the ctor.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.State">
|
||||
<summary>
|
||||
Gets the current <see cref="T:Microsoft.AspNet.SignalR.Client.ConnectionState"/> of the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Connection.DebugTextWriter">
|
||||
<summary>
|
||||
Default text writer
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.Object,System.TimeSpan)">
|
||||
<summary>
|
||||
Initializes a new instance of the HeartBeatMonitor Class
|
||||
</summary>
|
||||
<param name="connection"></param>
|
||||
<param name="connectionStateLock"></param>
|
||||
<param name="beatInterval">How often to check connection status</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Start">
|
||||
<summary>
|
||||
Starts the timer that triggers heartbeats
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat">
|
||||
<summary>
|
||||
Callback function for the timer which determines if we need to notify the user or attempt to reconnect
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat(System.TimeSpan)">
|
||||
<summary>
|
||||
Logic to determine if we need to notify the user or attempt to reconnect
|
||||
</summary>
|
||||
<param name="timeElapsed"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose">
|
||||
<summary>
|
||||
Dispose off the timer
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Dispose off the timer
|
||||
</summary>
|
||||
<param name="disposing"></param>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient">
|
||||
<summary>
|
||||
A client that can make http request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Initialize(Microsoft.AspNet.SignalR.Client.IConnection)">
|
||||
<summary>
|
||||
Initializes the Http Clients
|
||||
</summary>
|
||||
<param name="connection">Connection</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http GET request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="isLongRunning">Indicates whether it is a long running request</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Post(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http POST request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="postData">form url encoded data.</param>
|
||||
<param name="isLongRunning">Indicates whether it is a long running request</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.IRequest">
|
||||
<summary>
|
||||
The http request
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.Abort">
|
||||
<summary>
|
||||
Aborts the request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.SetRequestHeaders(System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Set Request Headers
|
||||
</summary>
|
||||
<param name="headers">request headers</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.UserAgent">
|
||||
<summary>
|
||||
The user agent for this request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.Accept">
|
||||
<summary>
|
||||
The accept header for this request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.IResponse">
|
||||
<summary>
|
||||
The http response.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IResponse.GetStream">
|
||||
<summary>
|
||||
Gets the steam that represents the response body.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.HubConnection">
|
||||
<summary>
|
||||
A <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> for interacting with Hubs.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
<param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
<param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.CreateHubProxy(System.String)">
|
||||
<summary>
|
||||
Creates an <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> for the hub with the specified name.
|
||||
</summary>
|
||||
<param name="hubName">The name of the hub.</param>
|
||||
<returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.HubProxyExtensions">
|
||||
<summary>
|
||||
Extensions to the <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.GetValue``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
|
||||
<summary>
|
||||
Gets the value of a state variable.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the state variable</typeparam>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="name">The name of the state variable.</param>
|
||||
<returns>The value of the state variable.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action)">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``2(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``3(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``4(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{System.Object})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``5(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3,``4})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``6(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3,``4,``5})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``7(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3,``4,``5,``6})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.Observe(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
|
||||
<summary>
|
||||
Registers a <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> event has an <see cref="T:IObservable{T}"/>.
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<returns>An <see cref="T:IObservable{object[]}"/>.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.IHubProxy">
|
||||
<summary>
|
||||
A client side proxy for a server side hub.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke(System.String,System.Object[])">
|
||||
<summary>
|
||||
Executes a method on the server side hub asynchronously.
|
||||
</summary>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="args">The arguments</param>
|
||||
<returns>A task that represents when invocation returned.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``1(System.String,System.Object[])">
|
||||
<summary>
|
||||
Executes a method on the server side hub asynchronously.
|
||||
</summary>
|
||||
<typeparam name="T">The type of result returned from the hub</typeparam>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="args">The arguments</param>
|
||||
<returns>A task that represents when invocation returned.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Subscribe(System.String)">
|
||||
<summary>
|
||||
Registers an event for the hub.
|
||||
</summary>
|
||||
<param name="eventName">The name of the event</param>
|
||||
<returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription"/>.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.Item(System.String)">
|
||||
<summary>
|
||||
Gets or sets state on the hub.
|
||||
</summary>
|
||||
<param name="name">The name of the field.</param>
|
||||
<returns>The value of the field</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.JsonSerializer">
|
||||
<summary>
|
||||
Gets the serializer used by the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Hubs.HubResult">
|
||||
<summary>
|
||||
Represents the result of a hub invocation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Id">
|
||||
<summary>
|
||||
The callback identifier
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Result">
|
||||
<summary>
|
||||
The return value of the hub
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.IsHubException">
|
||||
<summary>
|
||||
Indicates whether the Error is a <see cref="T:Microsoft.AspNet.SignalR.Client.HubException"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Error">
|
||||
<summary>
|
||||
The error message returned from the hub invocation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.ErrorData">
|
||||
<summary>
|
||||
Extra error data
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.State">
|
||||
<summary>
|
||||
The caller state from this hub.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Hubservable">
|
||||
<summary>
|
||||
<see cref="T:System.IObservable{object[]}"/> implementation of a hub event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription">
|
||||
<summary>
|
||||
Represents a subscription to a hub method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.ErrorExtensions.GetError(System.Exception)">
|
||||
<summary>
|
||||
Simplifies error recognition by unwrapping complex exceptions.
|
||||
</summary>
|
||||
<param name="ex">The thrown exception.</param>
|
||||
<returns>An unwrapped exception in the form of a SignalRError.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.SignalRError">
|
||||
<summary>
|
||||
Represents errors that are thrown by the SignalR client
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.#ctor(System.Exception)">
|
||||
<summary>
|
||||
Create custom SignalR based error.
|
||||
</summary>
|
||||
<param name="exception">The exception to unwrap</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.ToString">
|
||||
<summary>
|
||||
Allow a SignalRError to be directly written to an output stream
|
||||
</summary>
|
||||
<returns>Exception error</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.Dispose">
|
||||
<summary>
|
||||
Dispose of the response
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.StatusCode">
|
||||
<summary>
|
||||
The status code of the error (if it was a WebException)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.ResponseBody">
|
||||
<summary>
|
||||
The response body of the error, if it was a WebException and the response is readable
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.Exception">
|
||||
<summary>
|
||||
The unwrapped underlying exception
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.KeepAliveData">
|
||||
<summary>
|
||||
Class to store all the Keep Alive properties
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.#ctor(System.IO.Stream)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader"/> class.
|
||||
</summary>
|
||||
<param name="stream">The stream to read asynchronously payloads from.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Start">
|
||||
<summary>
|
||||
Starts the reader.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Close">
|
||||
<summary>
|
||||
Closes the connection and the underlying stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Opened">
|
||||
<summary>
|
||||
Invoked when the stream is open.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Closed">
|
||||
<summary>
|
||||
Invoked when the reader is closed while in the Processing state.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Data">
|
||||
<summary>
|
||||
Invoked when there's a message if received in the stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.Start">
|
||||
<summary>
|
||||
Starts the Polling Request Handler.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.Stop">
|
||||
<summary>
|
||||
Fully stops the Polling Request Handlers.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.Abort">
|
||||
<summary>
|
||||
Aborts the currently active polling request, does not stop the Polling Request Handler.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.ResolveUrl">
|
||||
<summary>
|
||||
Used to generate the Url that is posted to for the poll.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.PrepareRequest">
|
||||
<summary>
|
||||
Allows modification of the IRequest parameter before using it in a poll.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnMessage">
|
||||
<summary>
|
||||
Sends the string based message to the callback.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnError">
|
||||
<summary>
|
||||
If the poll errors OnError gets triggered and passes the exception.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnPolling">
|
||||
<summary>
|
||||
Triggers when the polling request is in flight
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnAfterPoll">
|
||||
<summary>
|
||||
Triggers before a new polling request is attempted.
|
||||
Passes in an exception if the Poll errored, null otherwise.
|
||||
Expects the return as a task in order to allow modification of timing for subsequent polls.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnAbort">
|
||||
<summary>
|
||||
Fired when the current poll request was aborted, passing in the soon to be aborted request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Infrastructure.Disposer">
|
||||
<summary>
|
||||
Helper class to manage disposing a resource at an arbirtary time
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Infrastructure.ThreadSafeInvoker">
|
||||
<summary>
|
||||
Allows for thread safe invocation of a delegate.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_CertsCanOnlyBeAddedWhenDisconnected">
|
||||
<summary>
|
||||
Looks up a localized string similar to Client Certificates cannot be added after the connection has started..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackArgumentTypeMismatch">
|
||||
<summary>
|
||||
Looks up a localized string similar to A client callback for event {0} with {1} argument(s) was found, however an error occurred because {2}.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackInvalidNumberOfArguments">
|
||||
<summary>
|
||||
Looks up a localized string similar to A client callback for event {0} with {1} argument(s) could not be found.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionCancelled">
|
||||
<summary>
|
||||
Looks up a localized string similar to The connection was stopped before it could be started..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionHasNotBeenEstablished">
|
||||
<summary>
|
||||
Looks up a localized string similar to The connection has not been established..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentConnectionDisconnected">
|
||||
<summary>
|
||||
Looks up a localized string similar to Data cannot be sent because the connection is in the disconnected state. Call start before sending any data..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentDuringWebSocketReconnect">
|
||||
<summary>
|
||||
Looks up a localized string similar to Data cannot be sent because the WebSocket connection is reconnecting..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_IncompatibleProtocolVersion">
|
||||
<summary>
|
||||
Looks up a localized string similar to You are using a version of the client that isn't compatible with the server. Client version {0}, server version {1}..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProxiesCannotBeAddedConnectionStarted">
|
||||
<summary>
|
||||
Looks up a localized string similar to A HubProxy cannot be added after the connection has been started..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ServerNegotiationFailed">
|
||||
<summary>
|
||||
Looks up a localized string similar to Server negotiation failed..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TaskCancelledException">
|
||||
<summary>
|
||||
Looks up a localized string similar to Request failed - task cancelled..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportFailedToConnect">
|
||||
<summary>
|
||||
Looks up a localized string similar to Transport failed trying to connect..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportTimedOutTryingToConnect">
|
||||
<summary>
|
||||
Looks up a localized string similar to Transport timed out trying to connect.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_UrlCantContainQueryStringDirectly">
|
||||
<summary>
|
||||
Looks up a localized string similar to Url cannot contain query string directly. Pass query string values in using available overload..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_ConnectionClosed">
|
||||
<summary>
|
||||
Looks up a localized string similar to Connection was disconnected before invocation result was received..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_Reconnecting">
|
||||
<summary>
|
||||
Looks up a localized string similar to Connection started reconnecting before invocation result was received..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.StateChange">
|
||||
<summary>
|
||||
Represents a change in the connection state.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.StateChange.#ctor(Microsoft.AspNet.SignalR.Client.ConnectionState,Microsoft.AspNet.SignalR.Client.ConnectionState)">
|
||||
<summary>
|
||||
Creates a new stance of <see cref="T:Microsoft.AspNet.SignalR.Client.StateChange"/>.
|
||||
</summary>
|
||||
<param name="oldState">The old state of the connection.</param>
|
||||
<param name="newState">The new state of the connection.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.StateChange.OldState">
|
||||
<summary>
|
||||
Gets the old state of the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.StateChange.NewState">
|
||||
<summary>
|
||||
Gets the new state of the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AutoTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the active transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.HttpBasedTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ReconnectDelay">
|
||||
<summary>
|
||||
The time to wait after a connection drops to try reconnecting.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ErrorDelay">
|
||||
<summary>
|
||||
The time to wait after an error happens to continue polling.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.ReconnectDelay">
|
||||
<summary>
|
||||
The time to wait after a connection drops to try reconnecting.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader">
|
||||
<summary>
|
||||
Event source implementation for .NET. This isn't to the spec but it's enough to support SignalR's
|
||||
server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.IO.Stream)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader"/> class.
|
||||
</summary>
|
||||
<param name="connection">The connection associated with this event source</param>
|
||||
<param name="stream">The stream to read event source payloads from.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.Message">
|
||||
<summary>
|
||||
Invoked when there's a message if received in the stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient">
|
||||
<summary>
|
||||
The default <see cref="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient"/> implementation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Initialize(Microsoft.AspNet.SignalR.Client.IConnection)">
|
||||
<summary>
|
||||
Initialize the Http Clients
|
||||
</summary>
|
||||
<param name="connection">Connection</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http GET request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="isLongRunning">Indicates whether the request is long running</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Post(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http POST request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="postData">form url encoded data.</param>
|
||||
<param name="isLongRunning">Indicates whether the request is long running</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.GetHttpClient(System.Boolean)">
|
||||
<summary>
|
||||
Returns the appropriate client based on whether it is a long running request
|
||||
</summary>
|
||||
<param name="isLongRunning">Indicates whether the request is long running</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.WebSocketWrapperRequest.PrepareRequest">
|
||||
<summary>
|
||||
Adds certificates, credentials, proxies and cookies to the request
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.WebSocketTransport.ReconnectDelay">
|
||||
<summary>
|
||||
The time to wait after a connection drops to try reconnecting.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.WebSocketTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.WebSocketTransport.Name">
|
||||
<summary>
|
||||
The name of the transport.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -1,880 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.AspNet.SignalR.Client</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient">
|
||||
<summary>
|
||||
The default <see cref="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient"/> implementation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient">
|
||||
<summary>
|
||||
A client that can make http request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Initialize(Microsoft.AspNet.SignalR.Client.IConnection)">
|
||||
<summary>
|
||||
Initializes the Http Clients
|
||||
</summary>
|
||||
<param name="connection">Connection</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http GET request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="isLongRunning">Indicates whether it is a long running request</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Post(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http POST request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="postData">form url encoded data.</param>
|
||||
<param name="isLongRunning">Indicates whether it is a long running request</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Initialize(Microsoft.AspNet.SignalR.Client.IConnection)">
|
||||
<summary>
|
||||
Initialize the Http Clients
|
||||
</summary>
|
||||
<param name="connection">Connection</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http GET request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="isLongRunning">Indicates whether the request is long running</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Post(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
|
||||
<summary>
|
||||
Makes an asynchronous http POST request to the specified url.
|
||||
</summary>
|
||||
<param name="url">The url to send the request to.</param>
|
||||
<param name="prepareRequest">A callback that initializes the request with default values.</param>
|
||||
<param name="postData">form url encoded data.</param>
|
||||
<param name="isLongRunning">Indicates whether the request is long running</param>
|
||||
<returns>A <see cref="T:Task{IResponse}"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.GetHttpClient(System.Boolean)">
|
||||
<summary>
|
||||
Returns the appropriate client based on whether it is a long running request
|
||||
</summary>
|
||||
<param name="isLongRunning">Indicates whether the request is long running</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.IRequest">
|
||||
<summary>
|
||||
The http request
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.Abort">
|
||||
<summary>
|
||||
Aborts the request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.SetRequestHeaders(System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Set Request Headers
|
||||
</summary>
|
||||
<param name="headers">request headers</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.UserAgent">
|
||||
<summary>
|
||||
The user agent for this request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.Accept">
|
||||
<summary>
|
||||
The accept header for this request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Http.IResponse">
|
||||
<summary>
|
||||
The http response.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Http.IResponse.GetStream">
|
||||
<summary>
|
||||
Gets the steam that represents the response body.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Connection">
|
||||
<summary>
|
||||
Provides client connections for SignalR services.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start">
|
||||
<summary>
|
||||
Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
|
||||
</summary>
|
||||
<returns>A task that represents when the connection has started.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Http.IHttpClient)">
|
||||
<summary>
|
||||
Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
|
||||
</summary>
|
||||
<param name="httpClient">The http client</param>
|
||||
<returns>A task that represents when the connection has started.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Transports.IClientTransport)">
|
||||
<summary>
|
||||
Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
|
||||
</summary>
|
||||
<param name="transport">The transport to use.</param>
|
||||
<returns>A task that represents when the connection has started.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop">
|
||||
<summary>
|
||||
Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.TimeSpan)">
|
||||
<summary>
|
||||
Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
|
||||
<param name="timeout">The timeout</param>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#Disconnect">
|
||||
<summary>
|
||||
Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> without sending an abort message to the server.
|
||||
This function is called after we receive a disconnect message from the server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.String)">
|
||||
<summary>
|
||||
Sends data asynchronously over the connection.
|
||||
</summary>
|
||||
<param name="data">The data to send.</param>
|
||||
<returns>A task that represents when the data has been sent.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.Object)">
|
||||
<summary>
|
||||
Sends an object that will be JSON serialized asynchronously over the connection.
|
||||
</summary>
|
||||
<param name="value">The value to serialize.</param>
|
||||
<returns>A task that represents when the data has been sent.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkLastMessage">
|
||||
<summary>
|
||||
Sets LastMessageAt to the current time
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkActive">
|
||||
<summary>
|
||||
Sets LastActiveAt to the current time
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose">
|
||||
<summary>
|
||||
Stop the connection, equivalent to calling connection.stop
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Stop the connection, equivalent to calling connection.stop
|
||||
</summary>
|
||||
<param name="disposing">Set this to true to perform the dispose, false to do nothing</param>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Received">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has received data from the server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Error">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has encountered an error.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Closed">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is stopped.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnecting">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> starts reconnecting after an error.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnected">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> successfully reconnects after a timeout.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.StateChanged">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> state changes.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Connection.ConnectionSlow">
|
||||
<summary>
|
||||
Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is about to timeout
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.TransportConnectTimeout">
|
||||
<summary>
|
||||
The amount of time a transport will wait (while connecting) before failing.
|
||||
This value is modified by adding the server's TransportConnectTimeout configuration value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#TotalTransportConnectTimeout">
|
||||
<summary>
|
||||
The amount of time a transport will wait (while connecting) before failing.
|
||||
This is the total vaue obtained by adding the server's configuration value and the timeout specified by the user
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#ReconnectWindow">
|
||||
<summary>
|
||||
The maximum amount of time a connection will allow to try and reconnect.
|
||||
This value is equivalent to the summation of the servers disconnect and keep alive timeout values.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#KeepAliveData">
|
||||
<summary>
|
||||
Object to store the various keep alive timeout values
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#LastMessageAt">
|
||||
<summary>
|
||||
The timestamp of the last message received by the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.JsonSerializer">
|
||||
<summary>
|
||||
Gets or sets the serializer used by the connection
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.CookieContainer">
|
||||
<summary>
|
||||
Gets or sets the cookies associated with the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Credentials">
|
||||
<summary>
|
||||
Gets or sets authentication information for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Headers">
|
||||
<summary>
|
||||
Gets and sets headers for the requests
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Url">
|
||||
<summary>
|
||||
Gets the url for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.MessageId">
|
||||
<summary>
|
||||
Gets or sets the last message id for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionId">
|
||||
<summary>
|
||||
Gets or sets the connection id for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionToken">
|
||||
<summary>
|
||||
Gets or sets the connection token for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.GroupsToken">
|
||||
<summary>
|
||||
Gets or sets the groups token for the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.Items">
|
||||
<summary>
|
||||
Gets a dictionary for storing state for a the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.QueryString">
|
||||
<summary>
|
||||
Gets the querystring specified in the ctor.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Connection.State">
|
||||
<summary>
|
||||
Gets the current <see cref="T:Microsoft.AspNet.SignalR.Client.ConnectionState"/> of the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Connection.DebugTextWriter">
|
||||
<summary>
|
||||
Default text writer
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.Object,System.TimeSpan)">
|
||||
<summary>
|
||||
Initializes a new instance of the HeartBeatMonitor Class
|
||||
</summary>
|
||||
<param name="connection"></param>
|
||||
<param name="connectionStateLock"></param>
|
||||
<param name="beatInterval">How often to check connection status</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Start">
|
||||
<summary>
|
||||
Starts the timer that triggers heartbeats
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat">
|
||||
<summary>
|
||||
Callback function for the timer which determines if we need to notify the user or attempt to reconnect
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat(System.TimeSpan)">
|
||||
<summary>
|
||||
Logic to determine if we need to notify the user or attempt to reconnect
|
||||
</summary>
|
||||
<param name="timeElapsed"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose">
|
||||
<summary>
|
||||
Dispose off the timer
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose(System.Boolean)">
|
||||
<summary>
|
||||
Dispose off the timer
|
||||
</summary>
|
||||
<param name="disposing"></param>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.HubConnection">
|
||||
<summary>
|
||||
A <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> for interacting with Hubs.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
<param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
|
||||
</summary>
|
||||
<param name="url">The url to connect to.</param>
|
||||
<param name="queryString">The query string data to pass to the server.</param>
|
||||
<param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.CreateHubProxy(System.String)">
|
||||
<summary>
|
||||
Creates an <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> for the hub with the specified name.
|
||||
</summary>
|
||||
<param name="hubName">The name of the hub.</param>
|
||||
<returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.HubProxyExtensions">
|
||||
<summary>
|
||||
Extensions to the <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.GetValue``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
|
||||
<summary>
|
||||
Gets the value of a state variable.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the state variable</typeparam>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="name">The name of the state variable.</param>
|
||||
<returns>The value of the state variable.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action)">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``2(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``3(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``4(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3})">
|
||||
<summary>
|
||||
Registers for an event with the specified name and callback
|
||||
</summary>
|
||||
<param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
|
||||
<param name="eventName">The name of the event.</param>
|
||||
<param name="onData">The callback</param>
|
||||
<returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.IHubProxy">
|
||||
<summary>
|
||||
A client side proxy for a server side hub.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke(System.String,System.Object[])">
|
||||
<summary>
|
||||
Executes a method on the server side hub asynchronously.
|
||||
</summary>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="args">The arguments</param>
|
||||
<returns>A task that represents when invocation returned.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``1(System.String,System.Object[])">
|
||||
<summary>
|
||||
Executes a method on the server side hub asynchronously.
|
||||
</summary>
|
||||
<typeparam name="T">The type of result returned from the hub</typeparam>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="args">The arguments</param>
|
||||
<returns>A task that represents when invocation returned.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Subscribe(System.String)">
|
||||
<summary>
|
||||
Registers an event for the hub.
|
||||
</summary>
|
||||
<param name="eventName">The name of the event</param>
|
||||
<returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription"/>.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.Item(System.String)">
|
||||
<summary>
|
||||
Gets or sets state on the hub.
|
||||
</summary>
|
||||
<param name="name">The name of the field.</param>
|
||||
<returns>The value of the field</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.JsonSerializer">
|
||||
<summary>
|
||||
Gets the serializer used by the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Hubs.HubResult">
|
||||
<summary>
|
||||
Represents the result of a hub invocation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Id">
|
||||
<summary>
|
||||
The callback identifier
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Result">
|
||||
<summary>
|
||||
The return value of the hub
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.IsHubException">
|
||||
<summary>
|
||||
Indicates whether the Error is a <see cref="T:Microsoft.AspNet.SignalR.Client.HubException"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Error">
|
||||
<summary>
|
||||
The error message returned from the hub invocation.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.ErrorData">
|
||||
<summary>
|
||||
Extra error data
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.State">
|
||||
<summary>
|
||||
The caller state from this hub.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription">
|
||||
<summary>
|
||||
Represents a subscription to a hub method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.ErrorExtensions.GetError(System.Exception)">
|
||||
<summary>
|
||||
Simplifies error recognition by unwrapping complex exceptions.
|
||||
</summary>
|
||||
<param name="ex">The thrown exception.</param>
|
||||
<returns>An unwrapped exception in the form of a SignalRError.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.SignalRError">
|
||||
<summary>
|
||||
Represents errors that are thrown by the SignalR client
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.#ctor(System.Exception)">
|
||||
<summary>
|
||||
Create custom SignalR based error.
|
||||
</summary>
|
||||
<param name="exception">The exception to unwrap</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.ToString">
|
||||
<summary>
|
||||
Allow a SignalRError to be directly written to an output stream
|
||||
</summary>
|
||||
<returns>Exception error</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.Dispose">
|
||||
<summary>
|
||||
Dispose of the response
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.StatusCode">
|
||||
<summary>
|
||||
The status code of the error (if it was a WebException)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.ResponseBody">
|
||||
<summary>
|
||||
The response body of the error, if it was a WebException and the response is readable
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.Exception">
|
||||
<summary>
|
||||
The unwrapped underlying exception
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Infrastructure.ThreadSafeInvoker">
|
||||
<summary>
|
||||
Allows for thread safe invocation of a delegate.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.KeepAliveData">
|
||||
<summary>
|
||||
Class to store all the Keep Alive properties
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_CertsCanOnlyBeAddedWhenDisconnected">
|
||||
<summary>
|
||||
Looks up a localized string similar to Client Certificates cannot be added after the connection has started..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackArgumentTypeMismatch">
|
||||
<summary>
|
||||
Looks up a localized string similar to A client callback for event {0} with {1} argument(s) was found, however an error occurred because {2}.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackInvalidNumberOfArguments">
|
||||
<summary>
|
||||
Looks up a localized string similar to A client callback for event {0} with {1} argument(s) could not be found.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionCancelled">
|
||||
<summary>
|
||||
Looks up a localized string similar to The connection was stopped before it could be started..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionHasNotBeenEstablished">
|
||||
<summary>
|
||||
Looks up a localized string similar to The connection has not been established..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentConnectionDisconnected">
|
||||
<summary>
|
||||
Looks up a localized string similar to Data cannot be sent because the connection is in the disconnected state. Call start before sending any data..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentDuringWebSocketReconnect">
|
||||
<summary>
|
||||
Looks up a localized string similar to Data cannot be sent because the WebSocket connection is reconnecting..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_IncompatibleProtocolVersion">
|
||||
<summary>
|
||||
Looks up a localized string similar to You are using a version of the client that isn't compatible with the server. Client version {0}, server version {1}..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProxiesCannotBeAddedConnectionStarted">
|
||||
<summary>
|
||||
Looks up a localized string similar to A HubProxy cannot be added after the connection has been started..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ServerNegotiationFailed">
|
||||
<summary>
|
||||
Looks up a localized string similar to Server negotiation failed..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TaskCancelledException">
|
||||
<summary>
|
||||
Looks up a localized string similar to Request failed - task cancelled..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportFailedToConnect">
|
||||
<summary>
|
||||
Looks up a localized string similar to Transport failed trying to connect..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportTimedOutTryingToConnect">
|
||||
<summary>
|
||||
Looks up a localized string similar to Transport timed out trying to connect.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_UrlCantContainQueryStringDirectly">
|
||||
<summary>
|
||||
Looks up a localized string similar to Url cannot contain query string directly. Pass query string values in using available overload..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_ConnectionClosed">
|
||||
<summary>
|
||||
Looks up a localized string similar to Connection was disconnected before invocation result was received..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_Reconnecting">
|
||||
<summary>
|
||||
Looks up a localized string similar to Connection started reconnecting before invocation result was received..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.StateChange">
|
||||
<summary>
|
||||
Represents a change in the connection state.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.StateChange.#ctor(Microsoft.AspNet.SignalR.Client.ConnectionState,Microsoft.AspNet.SignalR.Client.ConnectionState)">
|
||||
<summary>
|
||||
Creates a new stance of <see cref="T:Microsoft.AspNet.SignalR.Client.StateChange"/>.
|
||||
</summary>
|
||||
<param name="oldState">The old state of the connection.</param>
|
||||
<param name="newState">The new state of the connection.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.StateChange.OldState">
|
||||
<summary>
|
||||
Gets the old state of the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.StateChange.NewState">
|
||||
<summary>
|
||||
Gets the new state of the connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.#ctor(System.IO.Stream)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader"/> class.
|
||||
</summary>
|
||||
<param name="stream">The stream to read asynchronously payloads from.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Start">
|
||||
<summary>
|
||||
Starts the reader.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Close">
|
||||
<summary>
|
||||
Closes the connection and the underlying stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Opened">
|
||||
<summary>
|
||||
Invoked when the stream is open.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Closed">
|
||||
<summary>
|
||||
Invoked when the reader is closed while in the Processing state.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Data">
|
||||
<summary>
|
||||
Invoked when there's a message if received in the stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.AutoTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the active transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.HttpBasedTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ReconnectDelay">
|
||||
<summary>
|
||||
The time to wait after a connection drops to try reconnecting.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ErrorDelay">
|
||||
<summary>
|
||||
The time to wait after an error happens to continue polling.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.Start">
|
||||
<summary>
|
||||
Starts the Polling Request Handler.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.Stop">
|
||||
<summary>
|
||||
Fully stops the Polling Request Handlers.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.Abort">
|
||||
<summary>
|
||||
Aborts the currently active polling request, does not stop the Polling Request Handler.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.ResolveUrl">
|
||||
<summary>
|
||||
Used to generate the Url that is posted to for the poll.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.PrepareRequest">
|
||||
<summary>
|
||||
Allows modification of the IRequest parameter before using it in a poll.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnMessage">
|
||||
<summary>
|
||||
Sends the string based message to the callback.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnError">
|
||||
<summary>
|
||||
If the poll errors OnError gets triggered and passes the exception.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnPolling">
|
||||
<summary>
|
||||
Triggers when the polling request is in flight
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnAfterPoll">
|
||||
<summary>
|
||||
Triggers before a new polling request is attempted.
|
||||
Passes in an exception if the Poll errored, null otherwise.
|
||||
Expects the return as a task in order to allow modification of timing for subsequent polls.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.AspNet.SignalR.Client.Transports.PollingRequestHandler.OnAbort">
|
||||
<summary>
|
||||
Fired when the current poll request was aborted, passing in the soon to be aborted request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.SupportsKeepAlive">
|
||||
<summary>
|
||||
Indicates whether or not the transport supports keep alive
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.ReconnectDelay">
|
||||
<summary>
|
||||
The time to wait after a connection drops to try reconnecting.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader">
|
||||
<summary>
|
||||
Event source implementation for .NET. This isn't to the spec but it's enough to support SignalR's
|
||||
server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.IO.Stream)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader"/> class.
|
||||
</summary>
|
||||
<param name="connection">The connection associated with this event source</param>
|
||||
<param name="stream">The stream to read event source payloads from.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.Message">
|
||||
<summary>
|
||||
Invoked when there's a message if received in the stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Infrastructure.Disposer">
|
||||
<summary>
|
||||
Helper class to manage disposing a resource at an arbirtary time
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -1,99 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.AspNet.SignalR.Owin</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="M:Microsoft.AspNet.SignalR.RequestExtensions.GetOwinVariable``1(Microsoft.AspNet.SignalR.IRequest,System.String)">
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.CallHandler"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.CallHandler.#ctor(Microsoft.AspNet.SignalR.ConnectionConfiguration,Microsoft.AspNet.SignalR.PersistentConnection)"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.CallHandler.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.ServerRequest"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerRequest.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Cookies">
|
||||
<returns>Returns <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.DisableRequestCompression"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Form">
|
||||
<returns>Returns <see cref="T:System.Collections.Specialized.NameValueCollection" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Headers">
|
||||
<returns>Returns <see cref="T:System.Collections.Specialized.NameValueCollection" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Items">
|
||||
<returns>Returns <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
|
||||
</member>
|
||||
<member name="F:Microsoft.AspNet.SignalR.Owin.ServerRequest.OwinEnvironmentKey"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.QueryString">
|
||||
<returns>Returns <see cref="T:System.Collections.Specialized.NameValueCollection" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.RequestHeaders">
|
||||
<returns>Returns <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Url">
|
||||
<returns>Returns <see cref="T:System.Uri" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.User">
|
||||
<returns>Returns <see cref="T:System.Security.Principal.IPrincipal" />.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.ServerResponse"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerResponse.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.CancellationToken">
|
||||
<returns>Returns <see cref="T:System.Threading.CancellationToken" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.ContentType">
|
||||
<returns>Returns <see cref="T:System.String" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.DisableResponseBuffering">
|
||||
<returns>Returns <see cref="T:System.Action" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerResponse.End">
|
||||
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerResponse.Flush">
|
||||
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.ResponseBody">
|
||||
<returns>Returns <see cref="T:System.IO.Stream" />.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.ResponseHeaders">
|
||||
<returns>Returns <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerResponse.Write(System.ArraySegment{System.Byte})"></member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.Handlers.HubDispatcherHandler"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.Handlers.HubDispatcherHandler.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},System.String,Microsoft.AspNet.SignalR.HubConfiguration)"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.Handlers.HubDispatcherHandler.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.Handlers.PersistentConnectionHandler"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.Handlers.PersistentConnectionHandler.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},System.String,System.Type,Microsoft.AspNet.SignalR.ConnectionConfiguration)"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.Handlers.PersistentConnectionHandler.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.</returns>
|
||||
</member>
|
||||
<member name="T:Owin.OwinExtensions"></member>
|
||||
<member name="M:Owin.OwinExtensions.MapConnection``1(Owin.IAppBuilder,System.String)">
|
||||
<returns>Returns <see cref="T:Owin.IAppBuilder" />.</returns>
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:Owin.OwinExtensions.MapConnection``1(Owin.IAppBuilder,System.String,Microsoft.AspNet.SignalR.ConnectionConfiguration)">
|
||||
<returns>Returns <see cref="T:Owin.IAppBuilder" />.</returns>
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:Owin.OwinExtensions.MapConnection(Owin.IAppBuilder,System.String,System.Type,Microsoft.AspNet.SignalR.ConnectionConfiguration)">
|
||||
<returns>Returns <see cref="T:Owin.IAppBuilder" />.</returns>
|
||||
</member>
|
||||
<member name="M:Owin.OwinExtensions.MapHubs(Owin.IAppBuilder)">
|
||||
<returns>Returns <see cref="T:Owin.IAppBuilder" />.</returns>
|
||||
</member>
|
||||
<member name="M:Owin.OwinExtensions.MapHubs(Owin.IAppBuilder,Microsoft.AspNet.SignalR.HubConfiguration)">
|
||||
<returns>Returns <see cref="T:Owin.IAppBuilder" />.</returns>
|
||||
</member>
|
||||
<member name="M:Owin.OwinExtensions.MapHubs(Owin.IAppBuilder,System.String,Microsoft.AspNet.SignalR.HubConfiguration)">
|
||||
<returns>Returns <see cref="T:Owin.IAppBuilder" />.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -1,79 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.AspNet.SignalR.Owin</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="M:Microsoft.AspNet.SignalR.RequestExtensions.GetOwinVariable``1(Microsoft.AspNet.SignalR.IRequest,System.String)">
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.CallHandler"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.CallHandler.#ctor(Microsoft.AspNet.SignalR.ConnectionConfiguration,Microsoft.AspNet.SignalR.PersistentConnection)">
|
||||
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Owin.CallHandler" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.CallHandler.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})"></member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.ServerRequest"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerRequest.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Owin.ServerRequest" /> class.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Cookies"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.DisableRequestCompression"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Form"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Headers"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Items"></member>
|
||||
<member name="F:Microsoft.AspNet.SignalR.Owin.ServerRequest.OwinEnvironmentKey"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.QueryString"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.RequestHeaders"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.Url"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerRequest.User"></member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.ServerResponse"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerResponse.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Owin.ServerResponse" /> class.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.CancellationToken"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.ContentType"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.DisableResponseBuffering"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerResponse.End"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerResponse.Flush"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.ResponseBody"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.Owin.ServerResponse.ResponseHeaders"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerResponse.Write(System.ArraySegment{System.Byte})"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.ServerRequest.AcceptWebSocketRequest(System.Func{Microsoft.AspNet.SignalR.Hosting.IWebSocket,System.Threading.Tasks.Task})"></member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.Handlers.HubDispatcherHandler"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.Handlers.HubDispatcherHandler.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},System.String,Microsoft.AspNet.SignalR.HubConfiguration)">
|
||||
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Owin.Handlers.HubDispatcherHandler" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.Handlers.HubDispatcherHandler.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})"></member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.Owin.Handlers.PersistentConnectionHandler"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.Handlers.PersistentConnectionHandler.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},System.String,System.Type,Microsoft.AspNet.SignalR.ConnectionConfiguration)">
|
||||
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Owin.Handlers.PersistentConnectionHandler" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.Owin.Handlers.PersistentConnectionHandler.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})"></member>
|
||||
<member name="T:Owin.OwinExtensions"></member>
|
||||
<member name="M:Owin.OwinExtensions.MapConnection``1(Owin.IAppBuilder,System.String)">
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:Owin.OwinExtensions.MapConnection``1(Owin.IAppBuilder,System.String,Microsoft.AspNet.SignalR.ConnectionConfiguration)">
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:Owin.OwinExtensions.MapConnection(Owin.IAppBuilder,System.String,System.Type,Microsoft.AspNet.SignalR.ConnectionConfiguration)"></member>
|
||||
<member name="M:Owin.OwinExtensions.MapHubs(Owin.IAppBuilder)"></member>
|
||||
<member name="M:Owin.OwinExtensions.MapHubs(Owin.IAppBuilder,Microsoft.AspNet.SignalR.HubConfiguration)"></member>
|
||||
<member name="M:Owin.OwinExtensions.MapHubs(Owin.IAppBuilder,System.String,Microsoft.AspNet.SignalR.HubConfiguration)"></member>
|
||||
<member name="T:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.Close"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.Error"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.MaxIncomingMessageSize"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.OnClose(System.Boolean)"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.OnError"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.OnMessage(System.Byte[])"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.OnMessage(System.String)"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.OnOpen"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.ProcessWebSocketRequestAsync(System.Net.WebSockets.WebSocket,System.Threading.CancellationToken)"></member>
|
||||
<member name="M:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.Send(System.String)"></member>
|
||||
<member name="P:Microsoft.AspNet.SignalR.WebSockets.WebSocketHandler.WebSocket"></member>
|
||||
</members>
|
||||
</doc>
|
||||
118
packages/Microsoft.Bcl.1.1.8/License-Stable.rtf
vendored
118
packages/Microsoft.Bcl.1.1.8/License-Stable.rtf
vendored
@@ -1,118 +0,0 @@
|
||||
{\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033{\fonttbl{\f0\fswiss\fprq2\fcharset0 Tahoma;}{\f1\froman\fprq2\fcharset0 Times New Roman;}{\f2\fswiss\fprq2\fcharset0 Calibri;}{\f3\fnil\fcharset0 Calibri;}{\f4\fnil\fcharset2 Symbol;}}
|
||||
{\colortbl ;\red31\green73\blue125;\red0\green0\blue255;}
|
||||
{\*\listtable
|
||||
{\list\listhybrid
|
||||
{\listlevel\levelnfc0\leveljc0\levelstartat1{\leveltext\'02\'00.;}{\levelnumbers\'01;}\jclisttab\tx360}
|
||||
{\listlevel\levelnfc4\leveljc0\levelstartat1{\leveltext\'02\'01.;}{\levelnumbers\'01;}\jclisttab\tx363}
|
||||
{\listlevel\levelnfc2\leveljc0\levelstartat1{\leveltext\'02\'02.;}{\levelnumbers\'01;}\jclisttab\tx720}\listid1 }
|
||||
{\list\listhybrid
|
||||
{\listlevel\levelnfc0\leveljc0\levelstartat1{\leveltext\'02\'00.;}{\levelnumbers\'01;}\jclisttab\tx363}
|
||||
{\listlevel\levelnfc4\leveljc0\levelstartat1{\leveltext\'02\'01.;}{\levelnumbers\'01;}\jclisttab\tx363}\listid2 }}
|
||||
{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}}
|
||||
{\stylesheet{ Normal;}{\s1 heading 1;}{\s2 heading 2;}{\s3 heading 3;}}
|
||||
{\*\generator Riched20 6.2.9200}\viewkind4\uc1
|
||||
\pard\nowidctlpar\sb120\sa120\b\f0\fs24 MICROSOFT SOFTWARE LICENSE TERMS\par
|
||||
|
||||
\pard\brdrb\brdrs\brdrw10\brsp20 \nowidctlpar\sb120\sa120 MICROSOFT .NET LIBRARY \par
|
||||
|
||||
\pard\nowidctlpar\sb120\sa120\fs19 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\par
|
||||
|
||||
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120\b0 updates,\par
|
||||
{\pntext\f4\'B7\tab}supplements,\par
|
||||
{\pntext\f4\'B7\tab}Internet-based services, and\par
|
||||
{\pntext\f4\'B7\tab}support services\par
|
||||
|
||||
\pard\nowidctlpar\sb120\sa120\b for this software, unless other terms accompany those items. If so, those terms apply.\par
|
||||
BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\par
|
||||
|
||||
\pard\brdrt\brdrs\brdrw10\brsp20 \nowidctlpar\sb120\sa120 IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.\par
|
||||
|
||||
\pard
|
||||
{\listtext\f0 1.\tab}\jclisttab\tx360\ls1\nowidctlpar\s1\fi-357\li357\sb120\sa120 INSTALLATION AND USE RIGHTS. \par
|
||||
|
||||
\pard
|
||||
{\listtext\f0 a.\tab}\jclisttab\tx363\ls1\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 Installation and Use.\b0\fs20 You may install and use any number of copies of the software to design, develop and test your programs.\par
|
||||
{\listtext\f0 b.\tab}\b\fs19 Third Party Programs.\b0\fs20 The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only.\b\fs19\par
|
||||
|
||||
\pard
|
||||
{\listtext\f0 2.\tab}\jclisttab\tx360\ls1\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\par
|
||||
|
||||
\pard
|
||||
{\listtext\f0 a.\tab}\jclisttab\tx363\ls1\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 DISTRIBUTABLE CODE.\~ \b0 The software is comprised of Distributable Code. \f1\ldblquote\f0 Distributable Code\f1\rdblquote\f0 is code that you are permitted to distribute in programs you develop if you comply with the terms below.\b\par
|
||||
|
||||
\pard
|
||||
{\listtext\f0 i.\tab}\jclisttab\tx720\ls1\ilvl2\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077 Right to Use and Distribute. \par
|
||||
|
||||
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 You may copy and distribute the object code form of the software.\par
|
||||
{\pntext\f4\'B7\tab}Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\par
|
||||
|
||||
\pard\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077\b ii.\tab Distribution Requirements.\b0 \b For any Distributable Code you distribute, you must\par
|
||||
|
||||
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 add significant primary functionality to it in your programs;\par
|
||||
{\pntext\f4\'B7\tab}require distributors and external end users to agree to terms that protect it at least as much as this agreement;\par
|
||||
{\pntext\f4\'B7\tab}display your valid copyright notice on your programs; and\par
|
||||
{\pntext\f4\'B7\tab}indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\rquote fees, related to the distribution or use of your programs.\par
|
||||
|
||||
\pard\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077\b iii.\tab Distribution Restrictions.\b0 \b You may not\par
|
||||
|
||||
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 alter any copyright, trademark or patent notice in the Distributable Code;\par
|
||||
{\pntext\f4\'B7\tab}use Microsoft\rquote s trademarks in your programs\rquote names or in a way that suggests your programs come from or are endorsed by Microsoft;\par
|
||||
{\pntext\f4\'B7\tab}include Distributable Code in malicious, deceptive or unlawful programs; or\par
|
||||
{\pntext\f4\'B7\tab}modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\par
|
||||
|
||||
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-358\li1792\sb120\sa120 the code be disclosed or distributed in source code form; or\cf1\f2\par
|
||||
{\pntext\f4\'B7\tab}\cf0\f0 others have the right to modify it.\cf1\f2\par
|
||||
|
||||
\pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\cf0\b\f0 3.\tab\fs19 SCOPE OF LICENSE. \b0 The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\par
|
||||
|
||||
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120 work around any technical limitations in the software;\par
|
||||
{\pntext\f4\'B7\tab}reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\par
|
||||
{\pntext\f4\'B7\tab}publish the software for others to copy;\par
|
||||
{\pntext\f4\'B7\tab}rent, lease or lend the software;\par
|
||||
{\pntext\f4\'B7\tab}transfer the software or this agreement to any third party; or\par
|
||||
{\pntext\f4\'B7\tab}use the software for commercial software hosting services.\par
|
||||
|
||||
\pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\b\fs20 4.\tab\fs19 BACKUP COPY. \b0 You may make one backup copy of the software. You may use it only to reinstall the software.\par
|
||||
\b\fs20 5.\tab\fs19 DOCUMENTATION. \b0 Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\par
|
||||
\b\fs20 6.\tab\fs19 EXPORT RESTRICTIONS. \b0 The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see {\cf2\ul\fs20{\field{\*\fldinst{HYPERLINK www.microsoft.com/exporting }}{\fldrslt{www.microsoft.com/exporting}}}}\f0\fs19 .\cf2\ul\fs20\par
|
||||
\cf0\ulnone\b 7.\tab\fs19 SUPPORT SERVICES. \b0 Because this software is \ldblquote as is,\rdblquote we may not provide support services for it.\par
|
||||
\b\fs20 8.\tab\fs19 ENTIRE AGREEMENT. \b0 This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\par
|
||||
\b\fs20 9.\tab\fs19 APPLICABLE LAW.\par
|
||||
|
||||
\pard
|
||||
{\listtext\f0 a.\tab}\jclisttab\tx363\ls2\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 United States. \b0 If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\par
|
||||
{\listtext\f0 b.\tab}\b Outside the United States. If you acquired the software in any other country, the laws of that country apply.\par
|
||||
|
||||
\pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 10.\tab\fs19 LEGAL EFFECT. \b0 This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\par
|
||||
\b\fs20 11.\tab\fs19 DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \ldblquote AS-IS.\rdblquote YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\par
|
||||
|
||||
\pard\nowidctlpar\li357\sb120\sa120 FOR AUSTRALIA \endash YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\par
|
||||
|
||||
\pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 12.\tab\fs19 LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\par
|
||||
|
||||
\pard\nowidctlpar\li357\sb120\sa120\b0 This limitation applies to\par
|
||||
|
||||
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\par
|
||||
{\pntext\f4\'B7\tab}claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\par
|
||||
|
||||
\pard\nowidctlpar\sb120\sa120 It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\par
|
||||
\lang9 Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\par
|
||||
Remarque : Ce logiciel \'e9tant distribu\'e9 au Qu\'e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\'e7ais.\par
|
||||
|
||||
\pard\nowidctlpar\s1\sb120\sa120\b\lang1033 EXON\'c9RATION DE GARANTIE. \b0 Le logiciel vis\'e9 par une licence est offert \'ab tel quel \'bb. Toute utilisation de ce logiciel est \'e0 votre seule risque et p\'e9ril. Microsoft n\rquote accorde aucune autre garantie expresse. Vous pouvez b\'e9n\'e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\'e9 marchande, d\rquote ad\'e9quation \'e0 un usage particulier et d\rquote absence de contrefa\'e7on sont exclues.\par
|
||||
\b LIMITATION DES DOMMAGES-INT\'c9R\'caTS ET EXCLUSION DE RESPONSABILIT\'c9 POUR LES DOMMAGES. \b0 Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \'e0 hauteur de 5,00 $ US. Vous ne pouvez pr\'e9tendre \'e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\'e9ciaux, indirects ou accessoires et pertes de b\'e9n\'e9fices.\par
|
||||
|
||||
\pard\nowidctlpar\sb120\sa120\lang9 Cette limitation concerne :\par
|
||||
|
||||
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\li720\sb120\sa120 tout ce qui est reli\'e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\par
|
||||
{\pntext\f4\'B7\tab}les r\'e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\'e9 stricte, de n\'e9gligence ou d\rquote une autre faute dans la limite autoris\'e9e par la loi en vigueur.\par
|
||||
|
||||
\pard\nowidctlpar\sb120\sa120 Elle s\rquote applique \'e9galement, m\'eame si Microsoft connaissait ou devrait conna\'eetre l\rquote\'e9ventualit\'e9 d\rquote un tel dommage. Si votre pays n\rquote autorise pas l\rquote exclusion ou la limitation de responsabilit\'e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\rquote exclusion ci-dessus ne s\rquote appliquera pas \'e0 votre \'e9gard.\par
|
||||
|
||||
\pard\nowidctlpar\s1\sb120\sa120\b\lang1033 EFFET JURIDIQUE. \b0 Le pr\'e9sent contrat d\'e9crit certains droits juridiques. Vous pourriez avoir d\rquote autres droits pr\'e9vus par les lois de votre pays. Le pr\'e9sent contrat ne modifie pas les droits que vous conf\'e8rent les lois de votre pays si celles-ci ne le permettent pas.\par
|
||||
|
||||
\pard\nowidctlpar\sb120\sa120\b\fs20\lang1036\par
|
||||
|
||||
\pard\sa200\sl276\slmult1\b0\f3\fs22\lang9\par
|
||||
}
|
||||
| ||||