|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012 |
- <?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.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.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="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.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="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="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="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="P:Microsoft.AspNet.SignalR.Client.Transports.WebSocketTransport.ReconnectDelay">
- <summary>
- The time to wait after a connection drops to try reconnecting.
- </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.Infrastructure.Disposer">
- <summary>
- Helper class to manage disposing a resource at an arbirtary time
- </summary>
- </member>
- </members>
- </doc>
|