|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969 |
- <?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="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.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="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="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="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="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="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="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.DeadlockErrorTimeout">
- <summary>
- Gets or sets the amount of time a callback registered with "HubProxy.On" or
- "Connection.Received" may run before <see cref="E:Microsoft.AspNet.SignalR.Client.Connection.Error"/> will be called
- warning that a possible deadlock has been detected.
- </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.LastError">
- <summary>
- Gets the last error encountered by the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
- </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="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.Exception)">
- <summary>
- Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
- <param name="error">The error due to which the connection is being stopped.</param>
- </summary>
- </member>
- <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.Exception,System.TimeSpan)">
- <summary>
- Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
- <param name="error">The error due to which the connection is being stopped.</param>
- <param name="timeout">The timeout</param>
- </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="T:Microsoft.AspNet.SignalR.Client.Connection.DebugTextWriter">
- <summary>
- Default text writer
- </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="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="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="P:Microsoft.AspNet.SignalR.Client.Hubs.HubProgressUpdate.Id">
- <summary>
- The callback identifier
- </summary>
- </member>
- <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubProgressUpdate.Data">
- <summary>
- The progress value
- </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.ProgressUpdate">
- <summary>
- The progress update of the invocation
- </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="P:Microsoft.AspNet.SignalR.Client.IConnection.Proxy">
- <summary>
- Gets of sets proxy information for the connection.
- </summary>
- </member>
- <member name="T:Microsoft.AspNet.SignalR.Client.IHubProxy">
- <summary>
- A client side proxy for a server side hub.
- </summary>
- </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="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.Invoke``1(System.String,System.Action{``0},System.Object[])">
- <summary>
- Executes a method on the server side hub asynchronously with progress updates.
- </summary>
- <param name="method">The name of the method.</param>
- <param name="onProgress">The callback to invoke when progress updates are received.</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``2(System.String,System.Action{``1},System.Object[])">
- <summary>
- Executes a method on the server side hub asynchronously with progress updates.
- </summary>
- <typeparam name="TResult">The type of result returned from the hub.</typeparam>
- <typeparam name="TProgress">The type of progress update value.</typeparam>
- <param name="method">The name of the method.</param>
- <param name="onProgress">The callback to invoke when progress updates are received.</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.JsonSerializer">
- <summary>
- Gets the serializer used by the connection.
- </summary>
- </member>
- <member name="M:Microsoft.AspNet.SignalR.Client.Infrastructure.TaskQueueMonitor.Dispose">
- <summary>
- Dispose off the timer
- </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_InvalidUriScheme">
- <summary>
- Looks up a localized string similar to Uri scheme '{0}' is not valid. The only valid uri schemes are 'http' and 'https'..
- </summary>
- </member>
- <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_PossibleDeadlockDetected">
- <summary>
- Looks up a localized string similar to Possible deadlock detected. A callback registered with "HubProxy.On" or "Connection.Received" has been executing for at least {0} seconds..
- </summary>
- </member>
- <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProcessResponseBeforeStart">
- <summary>
- Looks up a localized string similar to The ProcessResponse method cannot be called before the transport is started..
- </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_ReconnectTimeout">
- <summary>
- Looks up a localized string similar to Couldn't reconnect within the configured timeout of {0}, disconnecting..
- </summary>
- </member>
- <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ReconnectWindowTimeout">
- <summary>
- Looks up a localized string similar to The client has been inactive since {0} and it has exceeded the inactivity timeout of {1}. Stopping the connection..
- </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_StartFailed">
- <summary>
- Looks up a localized string similar to Error during start request. Stopping the connection..
- </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_TransportCannotBeReused">
- <summary>
- Looks up a localized string similar to The transport instance passed to the Negotiate method has already been used. Use a new transport instance each time you start a new connection..
- </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.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.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.AutoTransport.SupportsKeepAlive">
- <summary>
- Indicates whether or not the active transport supports keep alive
- </summary>
- </member>
- <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ClientTransportBase.Name">
- <summary>
- Gets transport name.
- </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.LongPollingTransport.StartPolling(Microsoft.AspNet.SignalR.Client.IConnection,System.String)">
- <summary>
- Starts the polling loop.
- </summary>
- </member>
- <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.StopPolling">
- <summary>
- Fully stops the polling loop.
- </summary>
- </member>
- <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.LostConnection(Microsoft.AspNet.SignalR.Client.IConnection)">
- <summary>
- Aborts the currently active polling request thereby forcing a reconnect.
- </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="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="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="T:Microsoft.AspNet.SignalR.Infrastructure.UrlEncoder">
- <summary>
- Helpers for encoding URI query components.
- </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>
|