프로젝트

일반

사용자정보

개정판 f1f56bcc

IDf1f56bccffba9f9eb43387f287bb2cc57502782e
상위 46b71430
하위 a74e3cbc

이지연이(가) 5년 이상 전에 추가함

issue #000: remove Test_ folder

Change-Id: Ie0ae23df6e6d3f58dc5744ee579eba2b97dfc208

차이점 보기:

Test_/Program.cs
1
using Microsoft.AspNet.SignalR.Client;
2
using System;
3
using System.Collections.Generic;
4
using System.Linq;
5
using System.Net;
6

  
7
using System.Text;
8
using System.Threading.Tasks;
9

  
10
namespace Test_
11
{
12
    class Program
13
    {
14
        static void Main(string[] args)
15
        {
16

  
17
            // 허브 연결 구성
18
            var hubConnection = new HubConnection("http://cloud.devdoftech.co.kr:8089/");
19
            IHubProxy MarkusLicenseProxy = hubConnection.CreateHubProxy("MarkusLicenseHub");
20

  
21

  
22
            // 허브 연결 
23
            hubConnection.Start().ContinueWith(task => {
24
                if (task.IsFaulted)
25
                {
26
                    Console.WriteLine("There was an error opening the connection:{0}",
27
                                      task.Exception.GetBaseException());
28
                }
29
                else
30
                {
31
                    Console.WriteLine("Connected :: " + task.Id);
32
                }
33

  
34
            }).Wait();
35

  
36

  
37
            // [ 프로그램 시작 ]
38
            // 클라이언트에서 서버를 호출 ( 접속 시 )  : 라이센스 체크
39
            //( "method name", arg1, arg2 )
40
            MarkusLicenseProxy.Invoke<string>("ConnectionMarkus", "H2009115", "고동균").ContinueWith(task => {
41
                if (task.IsFaulted)
42
                {
43
                    Console.WriteLine("ConnectionMarkus :: There was an error calling send: {0}", task.Exception.GetBaseException());
44
                }
45
                else
46
                {
47
                    Console.WriteLine(task.Result);
48
                }
49
            });
50

  
51
            // 서버에서 클라이언트 호출 ( 프로그램 구동여부 ) : 라이센스 체크 후 응답 ( 반환값 : true, false ) 
52
            MarkusLicenseProxy.On<bool>("IsConnection", status => {
53

  
54
                if (status)
55
                {
56
                    // 프로그램 시작 
57
                    Console.WriteLine("connection status : " + status);
58
                }
59
                else
60
                {
61
                    // 프로그램 종료 ( signalr 접속 끊기 )  
62
                    hubConnection.Stop();
63
                }
64
            });
65

  
66
            // 공지 메세지 ( 서버에서 클라이언트 호출 ) 
67
            //MarkusLicenseProxy.On<string>("MarkusNotification", msg =>
68
                //Console.WriteLine("Noficiation Message : " + msg)
69
            //);
70

  
71

  
72
            // 서버 메서드 호출 
73
            //MarkusLicenseProxy.Invoke<string>("DoSomething", "I'm doing something!!!").Wait();
74

  
75
            //Console.ReadKey();
76

  
77
            hubConnection.Stop();
78

  
79
        }
80
    }
81
}
Test_/Properties/AssemblyInfo.cs
1
using System.Reflection;
2
using System.Runtime.CompilerServices;
3
using System.Runtime.InteropServices;
4

  
5
// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 
6
// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면
7
// 이러한 특성 값을 변경하세요.
8
[assembly: AssemblyTitle("Test_")]
9
[assembly: AssemblyDescription("")]
10
[assembly: AssemblyConfiguration("")]
11
[assembly: AssemblyCompany("")]
12
[assembly: AssemblyProduct("Test_")]
13
[assembly: AssemblyCopyright("Copyright ©  2018")]
14
[assembly: AssemblyTrademark("")]
15
[assembly: AssemblyCulture("")]
16

  
17
// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 
18
// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면
19
// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요.
20
[assembly: ComVisible(false)]
21

  
22
// 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다.
23
[assembly: Guid("1360e7ad-00bb-4eee-ba2b-5afd400591d4")]
24

  
25
// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다.
26
//
27
//      주 버전
28
//      부 버전 
29
//      빌드 번호
30
//      수정 버전
31
//
32
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
33
// 지정되도록 할 수 있습니다.
34
// [assembly: AssemblyVersion("1.0.*")]
35
[assembly: AssemblyVersion("1.0.0.0")]
36
[assembly: AssemblyFileVersion("1.0.0.0")]
Test_/Test_.csproj
1
<?xml version="1.0" encoding="utf-8"?>
2
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
  <PropertyGroup>
5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
    <ProjectGuid>{1360E7AD-00BB-4EEE-BA2B-5AFD400591D4}</ProjectGuid>
8
    <OutputType>Exe</OutputType>
9
    <RootNamespace>Test_</RootNamespace>
10
    <AssemblyName>Test_</AssemblyName>
11
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
12
    <FileAlignment>512</FileAlignment>
13
  </PropertyGroup>
14
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
15
    <PlatformTarget>AnyCPU</PlatformTarget>
16
    <DebugSymbols>true</DebugSymbols>
17
    <DebugType>full</DebugType>
18
    <Optimize>false</Optimize>
19
    <OutputPath>bin\Debug\</OutputPath>
20
    <DefineConstants>DEBUG;TRACE</DefineConstants>
21
    <ErrorReport>prompt</ErrorReport>
22
    <WarningLevel>4</WarningLevel>
23
  </PropertyGroup>
24
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25
    <PlatformTarget>AnyCPU</PlatformTarget>
26
    <DebugType>pdbonly</DebugType>
27
    <Optimize>true</Optimize>
28
    <OutputPath>bin\Release\</OutputPath>
29
    <DefineConstants>TRACE</DefineConstants>
30
    <ErrorReport>prompt</ErrorReport>
31
    <WarningLevel>4</WarningLevel>
32
  </PropertyGroup>
33
  <ItemGroup>
34
    <Reference Include="Microsoft.AspNet.SignalR.Client, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
35
      <HintPath>..\packages\Microsoft.AspNet.SignalR.Client.2.2.3\lib\net40\Microsoft.AspNet.SignalR.Client.dll</HintPath>
36
    </Reference>
37
    <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
38
      <HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
39
      <Private>True</Private>
40
    </Reference>
41
    <Reference Include="System" />
42
    <Reference Include="System.Core" />
43
    <Reference Include="System.Xml.Linq" />
44
    <Reference Include="System.Data.DataSetExtensions" />
45
    <Reference Include="Microsoft.CSharp" />
46
    <Reference Include="System.Data" />
47
    <Reference Include="System.Xml" />
48
  </ItemGroup>
49
  <ItemGroup>
50
    <Compile Include="Program.cs" />
51
    <Compile Include="Properties\AssemblyInfo.cs" />
52
  </ItemGroup>
53
  <ItemGroup>
54
    <None Include="packages.config" />
55
  </ItemGroup>
56
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
57
</Project>
Test_/bin/Debug/Microsoft.AspNet.SignalR.Client.xml
1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Microsoft.AspNet.SignalR.Client</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Microsoft.AspNet.SignalR.Infrastructure.UrlEncoder">
8
            <summary>
9
            Helpers for encoding URI query components.
10
            </summary>
11
        </member>
12
        <member name="T:Microsoft.AspNet.SignalR.Client.Connection">
13
            <summary>
14
            Provides client connections for SignalR services.
15
            </summary>
16
        </member>
17
        <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Received">
18
            <summary>
19
            Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has received data from the server.
20
            </summary>
21
        </member>
22
        <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Error">
23
            <summary>
24
            Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> has encountered an error.
25
            </summary>
26
        </member>
27
        <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Closed">
28
            <summary>
29
            Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is stopped.
30
            </summary>
31
        </member>
32
        <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnecting">
33
            <summary>
34
            Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> starts reconnecting after an error.
35
            </summary>
36
        </member>
37
        <member name="E:Microsoft.AspNet.SignalR.Client.Connection.Reconnected">
38
            <summary>
39
            Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> successfully reconnects after a timeout.
40
            </summary>
41
        </member>
42
        <member name="E:Microsoft.AspNet.SignalR.Client.Connection.StateChanged">
43
            <summary>
44
            Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> state changes.
45
            </summary>
46
        </member>
47
        <member name="E:Microsoft.AspNet.SignalR.Client.Connection.ConnectionSlow">
48
            <summary>
49
            Occurs when the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> is about to timeout
50
            </summary>
51
        </member>
52
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String)">
53
            <summary>
54
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
55
            </summary>
56
            <param name="url">The url to connect to.</param>
57
        </member>
58
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
59
            <summary>
60
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
61
            </summary>
62
            <param name="url">The url to connect to.</param>
63
            <param name="queryString">The query string data to pass to the server.</param>
64
        </member>
65
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.#ctor(System.String,System.String)">
66
            <summary>
67
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> class.
68
            </summary>
69
            <param name="url">The url to connect to.</param>
70
            <param name="queryString">The query string data to pass to the server.</param>
71
        </member>
72
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.TransportConnectTimeout">
73
            <summary>
74
            The amount of time a transport will wait (while connecting) before failing.
75
            This value is modified by adding the server's TransportConnectTimeout configuration value.
76
            </summary>
77
        </member>
78
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.DeadlockErrorTimeout">
79
            <summary>
80
            Gets or sets the amount of time a callback registered with "HubProxy.On" or
81
            "Connection.Received" may run before <see cref="E:Microsoft.AspNet.SignalR.Client.Connection.Error"/> will be called
82
            warning that a possible deadlock has been detected.
83
            </summary>
84
        </member>
85
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#TotalTransportConnectTimeout">
86
            <summary>
87
            The amount of time a transport will wait (while connecting) before failing.
88
            This is the total vaue obtained by adding the server's configuration value and the timeout specified by the user
89
            </summary>
90
        </member>
91
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.LastError">
92
            <summary>
93
            Gets the last error encountered by the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
94
            </summary>
95
        </member>
96
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#ReconnectWindow">
97
            <summary>
98
            The maximum amount of time a connection will allow to try and reconnect.
99
            This value is equivalent to the summation of the servers disconnect and keep alive timeout values.
100
            </summary>
101
        </member>
102
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#KeepAliveData">
103
            <summary>
104
            Object to store the various keep alive timeout values
105
            </summary>
106
        </member>
107
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#LastMessageAt">
108
            <summary>
109
            The timestamp of the last message received by the connection.
110
            </summary>
111
        </member>
112
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.JsonSerializer">
113
            <summary>
114
            Gets or sets the serializer used by the connection
115
            </summary>
116
        </member>
117
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.CookieContainer">
118
            <summary>
119
            Gets or sets the cookies associated with the connection.
120
            </summary>
121
        </member>
122
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Credentials">
123
            <summary>
124
            Gets or sets authentication information for the connection.
125
            </summary>
126
        </member>
127
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Headers">
128
            <summary>
129
            Gets and sets headers for the requests
130
            </summary>
131
        </member>
132
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Proxy">
133
            <summary>
134
            Gets of sets proxy information for the connection.
135
            </summary>
136
        </member>
137
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Url">
138
            <summary>
139
            Gets the url for the connection.
140
            </summary>
141
        </member>
142
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.MessageId">
143
            <summary>
144
            Gets or sets the last message id for the connection.
145
            </summary>
146
        </member>
147
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionId">
148
            <summary>
149
            Gets or sets the connection id for the connection.
150
            </summary>
151
        </member>
152
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.ConnectionToken">
153
            <summary>
154
            Gets or sets the connection token for the connection.
155
            </summary>
156
        </member>
157
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.GroupsToken">
158
            <summary>
159
            Gets or sets the groups token for the connection.
160
            </summary>
161
        </member>
162
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.Items">
163
            <summary>
164
            Gets a dictionary for storing state for a the connection.
165
            </summary>
166
        </member>
167
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.QueryString">
168
            <summary>
169
            Gets the querystring specified in the ctor.
170
            </summary>
171
        </member>
172
        <member name="P:Microsoft.AspNet.SignalR.Client.Connection.State">
173
            <summary>
174
            Gets the current <see cref="T:Microsoft.AspNet.SignalR.Client.ConnectionState"/> of the connection.
175
            </summary>
176
        </member>
177
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start">
178
            <summary>
179
            Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
180
            </summary>
181
            <returns>A task that represents when the connection has started.</returns>
182
        </member>
183
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Http.IHttpClient)">
184
            <summary>
185
            Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
186
            </summary>
187
            <param name="httpClient">The http client</param>
188
            <returns>A task that represents when the connection has started.</returns>
189
        </member>
190
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Start(Microsoft.AspNet.SignalR.Client.Transports.IClientTransport)">
191
            <summary>
192
            Starts the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/>.
193
            </summary>
194
            <param name="transport">The transport to use.</param>
195
            <returns>A task that represents when the connection has started.</returns>
196
        </member>
197
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop">
198
            <summary>
199
            Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
200
            </summary>
201
        </member>
202
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.Exception)">
203
            <summary>
204
            Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
205
            <param name="error">The error due to which the connection is being stopped.</param>
206
            </summary>
207
        </member>
208
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.Exception,System.TimeSpan)">
209
            <summary>
210
            Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
211
            <param name="error">The error due to which the connection is being stopped.</param>
212
            <param name="timeout">The timeout</param>
213
            </summary>
214
        </member>
215
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Stop(System.TimeSpan)">
216
            <summary>
217
            Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> and sends an abort message to the server.
218
            <param name="timeout">The timeout</param>
219
            </summary>
220
        </member>
221
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#Disconnect">
222
            <summary>
223
            Stops the <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> without sending an abort message to the server.
224
            This function is called after we receive a disconnect message from the server.
225
            </summary>
226
        </member>
227
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.String)">
228
            <summary>
229
            Sends data asynchronously over the connection.
230
            </summary>
231
            <param name="data">The data to send.</param>
232
            <returns>A task that represents when the data has been sent.</returns>
233
        </member>
234
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Send(System.Object)">
235
            <summary>
236
            Sends an object that will be JSON serialized asynchronously over the connection.
237
            </summary>
238
            <param name="value">The value to serialize.</param>
239
            <returns>A task that represents when the data has been sent.</returns>
240
        </member>
241
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.AddClientCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)">
242
            <summary>
243
            Adds a client certificate to the request
244
            </summary>
245
            <param name="certificate">Client Certificate</param>
246
        </member>
247
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkLastMessage">
248
            <summary>
249
            Sets LastMessageAt to the current time 
250
            </summary>
251
        </member>
252
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Microsoft#AspNet#SignalR#Client#IConnection#MarkActive">
253
            <summary>
254
            Sets LastActiveAt to the current time 
255
            </summary>
256
        </member>
257
        <member name="T:Microsoft.AspNet.SignalR.Client.Connection.DebugTextWriter">
258
            <summary>
259
            Default text writer
260
            </summary>
261
        </member>
262
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose">
263
            <summary>
264
            Stop the connection, equivalent to calling connection.stop
265
            </summary>
266
        </member>
267
        <member name="M:Microsoft.AspNet.SignalR.Client.Connection.Dispose(System.Boolean)">
268
            <summary>
269
            Stop the connection, equivalent to calling connection.stop
270
            </summary>
271
            <param name="disposing">Set this to true to perform the dispose, false to do nothing</param>
272
        </member>
273
        <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.Object,System.TimeSpan)">
274
            <summary>
275
            Initializes a new instance of the HeartBeatMonitor Class 
276
            </summary>
277
            <param name="connection"></param>
278
            <param name="connectionStateLock"></param>
279
            <param name="beatInterval">How often to check connection status</param>
280
        </member>
281
        <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Start">
282
            <summary>
283
            Starts the timer that triggers heartbeats  
284
            </summary>
285
        </member>
286
        <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat">
287
            <summary>
288
            Callback function for the timer which determines if we need to notify the user or attempt to reconnect
289
            </summary>
290
        </member>
291
        <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Beat(System.TimeSpan)">
292
            <summary>
293
            Logic to determine if we need to notify the user or attempt to reconnect
294
            </summary>
295
            <param name="timeElapsed"></param>
296
        </member>
297
        <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose">
298
            <summary>
299
            Dispose off the timer
300
            </summary>
301
        </member>
302
        <member name="M:Microsoft.AspNet.SignalR.Client.HeartbeatMonitor.Dispose(System.Boolean)">
303
            <summary>
304
            Dispose off the timer
305
            </summary>
306
            <param name="disposing"></param>
307
        </member>
308
        <member name="T:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient">
309
            <summary>
310
            The default <see cref="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient"/> implementation.
311
            </summary>
312
        </member>
313
        <member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
314
            <summary>
315
            Makes an asynchronous http GET request to the specified url.
316
            </summary>
317
            <param name="url">The url to send the request to.</param>
318
            <param name="prepareRequest">A callback that initializes the request with default values.</param>
319
            <param name="isLongRunning">Indicates whether the request is long running</param>
320
            <returns>A <see cref="T:Task{IResponse}"/>.</returns>
321
        </member>
322
        <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)">
323
            <summary>
324
            Makes an asynchronous http POST request to the specified url.
325
            </summary>
326
            <param name="url">The url to send the request to.</param>
327
            <param name="prepareRequest">A callback that initializes the request with default values.</param>
328
            <param name="postData">form url encoded data.</param>
329
            <param name="isLongRunning">Indicates whether the request is long running</param>
330
            <returns>A <see cref="T:Task{IResponse}"/>.</returns>
331
        </member>
332
        <member name="M:Microsoft.AspNet.SignalR.Client.Http.DefaultHttpClient.PrepareClientRequest(Microsoft.AspNet.SignalR.Client.Http.HttpWebRequestWrapper)">
333
            <summary>
334
            Adds certificates, credentials, proxies and cookies to the request
335
            </summary>
336
            <param name="req">Request object</param>
337
        </member>
338
        <member name="T:Microsoft.AspNet.SignalR.Client.Http.IHttpClient">
339
            <summary>
340
            A client that can make http request.
341
            </summary>
342
        </member>
343
        <member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Initialize(Microsoft.AspNet.SignalR.Client.IConnection)">
344
            <summary>
345
            Initializes the Http Clients
346
            </summary>
347
            <param name="connection">Connection</param>
348
        </member>
349
        <member name="M:Microsoft.AspNet.SignalR.Client.Http.IHttpClient.Get(System.String,System.Action{Microsoft.AspNet.SignalR.Client.Http.IRequest},System.Boolean)">
350
            <summary>
351
            Makes an asynchronous http GET request to the specified url.
352
            </summary>
353
            <param name="url">The url to send the request to.</param>
354
            <param name="prepareRequest">A callback that initializes the request with default values.</param>
355
            <param name="isLongRunning">Indicates whether it is a long running request</param>
356
            <returns>A <see cref="T:Task{IResponse}"/>.</returns>
357
        </member>
358
        <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)">
359
            <summary>
360
            Makes an asynchronous http POST request to the specified url.
361
            </summary>
362
            <param name="url">The url to send the request to.</param>
363
            <param name="prepareRequest">A callback that initializes the request with default values.</param>
364
            <param name="postData">form url encoded data.</param>
365
            <param name="isLongRunning">Indicates whether it is a long running request</param>
366
            <returns>A <see cref="T:Task{IResponse}"/>.</returns>
367
        </member>
368
        <member name="T:Microsoft.AspNet.SignalR.Client.Http.IRequest">
369
            <summary>
370
            The http request
371
            </summary>
372
        </member>
373
        <member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.UserAgent">
374
            <summary>
375
            The user agent for this request.
376
            </summary>
377
        </member>
378
        <member name="P:Microsoft.AspNet.SignalR.Client.Http.IRequest.Accept">
379
            <summary>
380
            The accept header for this request.
381
            </summary>
382
        </member>
383
        <member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.Abort">
384
            <summary>
385
            Aborts the request.
386
            </summary>
387
        </member>
388
        <member name="M:Microsoft.AspNet.SignalR.Client.Http.IRequest.SetRequestHeaders(System.Collections.Generic.IDictionary{System.String,System.String})">
389
            <summary>
390
            Set Request Headers
391
            </summary>
392
            <param name="headers">request headers</param>
393
        </member>
394
        <member name="T:Microsoft.AspNet.SignalR.Client.Http.IResponse">
395
            <summary>
396
            The http response.
397
            </summary>
398
        </member>
399
        <member name="M:Microsoft.AspNet.SignalR.Client.Http.IResponse.GetStream">
400
            <summary>
401
            Gets the steam that represents the response body.
402
            </summary>
403
            <returns></returns>
404
        </member>
405
        <member name="T:Microsoft.AspNet.SignalR.Client.HubConnection">
406
            <summary>
407
            A <see cref="T:Microsoft.AspNet.SignalR.Client.Connection"/> for interacting with Hubs.
408
            </summary>
409
        </member>
410
        <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String)">
411
            <summary>
412
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
413
            </summary>
414
            <param name="url">The url to connect to.</param>
415
        </member>
416
        <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Boolean)">
417
            <summary>
418
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
419
            </summary>
420
            <param name="url">The url to connect to.</param>
421
            <param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
422
        </member>
423
        <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String)">
424
            <summary>
425
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
426
            </summary>
427
            <param name="url">The url to connect to.</param>
428
            <param name="queryString">The query string data to pass to the server.</param>
429
        </member>
430
        <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.String,System.Boolean)">
431
            <summary>
432
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
433
            </summary>
434
            <param name="url">The url to connect to.</param>
435
            <param name="queryString">The query string data to pass to the server.</param>
436
            <param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
437
        </member>
438
        <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
439
            <summary>
440
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
441
            </summary>
442
            <param name="url">The url to connect to.</param>
443
            <param name="queryString">The query string data to pass to the server.</param>
444
        </member>
445
        <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Boolean)">
446
            <summary>
447
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.HubConnection"/> class.
448
            </summary>
449
            <param name="url">The url to connect to.</param>
450
            <param name="queryString">The query string data to pass to the server.</param>
451
            <param name="useDefaultUrl">Determines if the default "/signalr" path should be appended to the specified url.</param>
452
        </member>
453
        <member name="M:Microsoft.AspNet.SignalR.Client.HubConnection.CreateHubProxy(System.String)">
454
            <summary>
455
            Creates an <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> for the hub with the specified name.
456
            </summary>
457
            <param name="hubName">The name of the hub.</param>
458
            <returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></returns>
459
        </member>
460
        <member name="T:Microsoft.AspNet.SignalR.Client.HubProxyExtensions">
461
            <summary>
462
            Extensions to the <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.
463
            </summary>
464
        </member>
465
        <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.GetValue``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
466
            <summary>
467
            Gets the value of a state variable.
468
            </summary>
469
            <typeparam name="T">The type of the state variable</typeparam>
470
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
471
            <param name="name">The name of the state variable.</param>
472
            <returns>The value of the state variable.</returns>
473
        </member>
474
        <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action)">
475
            <summary>
476
            Registers for an event with the specified name and callback
477
            </summary>
478
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
479
            <param name="eventName">The name of the event.</param>
480
            <param name="onData">The callback</param>
481
            <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
482
        </member>
483
        <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``1(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0})">
484
            <summary>
485
            Registers for an event with the specified name and callback
486
            </summary>
487
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
488
            <param name="eventName">The name of the event.</param>
489
            <param name="onData">The callback</param>
490
            <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
491
        </member>
492
        <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``2(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1})">
493
            <summary>
494
            Registers for an event with the specified name and callback
495
            </summary>
496
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
497
            <param name="eventName">The name of the event.</param>
498
            <param name="onData">The callback</param>
499
            <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
500
        </member>
501
        <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``3(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2})">
502
            <summary>
503
            Registers for an event with the specified name and callback
504
            </summary>
505
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
506
            <param name="eventName">The name of the event.</param>
507
            <param name="onData">The callback</param>
508
            <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
509
        </member>
510
        <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``4(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3})">
511
            <summary>
512
            Registers for an event with the specified name and callback
513
            </summary>
514
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
515
            <param name="eventName">The name of the event.</param>
516
            <param name="onData">The callback</param>
517
            <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
518
        </member>
519
        <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{System.Object})">
520
            <summary>
521
            Registers for an event with the specified name and callback
522
            </summary>
523
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
524
            <param name="eventName">The name of the event.</param>
525
            <param name="onData">The callback</param>
526
            <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
527
        </member>
528
        <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.On``5(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String,System.Action{``0,``1,``2,``3,``4})">
529
            <summary>
530
            Registers for an event with the specified name and callback
531
            </summary>
532
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
533
            <param name="eventName">The name of the event.</param>
534
            <param name="onData">The callback</param>
535
            <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
536
        </member>
537
        <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})">
538
            <summary>
539
            Registers for an event with the specified name and callback
540
            </summary>
541
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
542
            <param name="eventName">The name of the event.</param>
543
            <param name="onData">The callback</param>
544
            <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
545
        </member>
546
        <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})">
547
            <summary>
548
            Registers for an event with the specified name and callback
549
            </summary>
550
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/>.</param>
551
            <param name="eventName">The name of the event.</param>
552
            <param name="onData">The callback</param>
553
            <returns>An <see cref="T:System.IDisposable"/> that represents this subscription.</returns>
554
        </member>
555
        <member name="M:Microsoft.AspNet.SignalR.Client.HubProxyExtensions.Observe(Microsoft.AspNet.SignalR.Client.IHubProxy,System.String)">
556
            <summary>
557
            Registers a <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/> event has an <see cref="T:IObservable{T}"/>.
558
            </summary>
559
            <param name="proxy">The <see cref="T:Microsoft.AspNet.SignalR.Client.IHubProxy"/></param>
560
            <param name="eventName">The name of the event.</param>
561
            <returns>An <see cref="T:IObservable{object[]}"/>.</returns>
562
        </member>
563
        <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubProgressUpdate.Id">
564
            <summary>
565
            The callback identifier
566
            </summary>
567
        </member>
568
        <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubProgressUpdate.Data">
569
            <summary>
570
            The progress value
571
            </summary>
572
        </member>
573
        <member name="T:Microsoft.AspNet.SignalR.Client.Hubs.HubResult">
574
            <summary>
575
            Represents the result of a hub invocation.
576
            </summary>
577
        </member>
578
        <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Id">
579
            <summary>
580
            The callback identifier
581
            </summary>
582
        </member>
583
        <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.ProgressUpdate">
584
            <summary>
585
            The progress update of the invocation
586
            </summary>
587
        </member>
588
        <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Result">
589
            <summary>
590
            The return value of the hub
591
            </summary>
592
        </member>
593
        <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.IsHubException">
594
            <summary>
595
            Indicates whether the Error is a <see cref="T:Microsoft.AspNet.SignalR.Client.HubException"/>.
596
            </summary>
597
        </member>
598
        <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.Error">
599
            <summary>
600
            The error message returned from the hub invocation.
601
            </summary>
602
        </member>
603
        <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.ErrorData">
604
            <summary>
605
            Extra error data
606
            </summary>
607
        </member>
608
        <member name="P:Microsoft.AspNet.SignalR.Client.Hubs.HubResult.State">
609
            <summary>
610
            The caller state from this hub.
611
            </summary>
612
        </member>
613
        <member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Hubservable">
614
            <summary>
615
            <see cref="T:System.IObservable{object[]}"/> implementation of a hub event.
616
            </summary>
617
        </member>
618
        <member name="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription">
619
            <summary>
620
            Represents a subscription to a hub method.
621
            </summary>
622
        </member>
623
        <member name="P:Microsoft.AspNet.SignalR.Client.IConnection.Proxy">
624
            <summary>
625
            Gets of sets proxy information for the connection.
626
            </summary>
627
        </member>
628
        <member name="T:Microsoft.AspNet.SignalR.Client.IHubProxy">
629
            <summary>
630
             A client side proxy for a server side hub.
631
            </summary>
632
        </member>
633
        <member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.Item(System.String)">
634
            <summary>
635
            Gets or sets state on the hub.
636
            </summary>
637
            <param name="name">The name of the field.</param>
638
            <returns>The value of the field</returns>
639
        </member>
640
        <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke(System.String,System.Object[])">
641
            <summary>
642
            Executes a method on the server side hub asynchronously.
643
            </summary>
644
            <param name="method">The name of the method.</param>
645
            <param name="args">The arguments</param>
646
            <returns>A task that represents when invocation returned.</returns>
647
        </member>
648
        <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``1(System.String,System.Object[])">
649
            <summary>
650
            Executes a method on the server side hub asynchronously.
651
            </summary>
652
            <typeparam name="T">The type of result returned from the hub.</typeparam>
653
            <param name="method">The name of the method.</param>
654
            <param name="args">The arguments</param>
655
            <returns>A task that represents when invocation returned.</returns>
656
        </member>
657
        <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``1(System.String,System.Action{``0},System.Object[])">
658
            <summary>
659
            Executes a method on the server side hub asynchronously with progress updates.
660
            </summary>
661
            <param name="method">The name of the method.</param>
662
            <param name="onProgress">The callback to invoke when progress updates are received.</param>
663
            <param name="args">The arguments</param>
664
            <returns>A task that represents when invocation returned.</returns>
665
        </member>
666
        <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Invoke``2(System.String,System.Action{``1},System.Object[])">
667
            <summary>
668
            Executes a method on the server side hub asynchronously with progress updates.
669
            </summary>
670
            <typeparam name="TResult">The type of result returned from the hub.</typeparam>
671
            <typeparam name="TProgress">The type of progress update value.</typeparam>
672
            <param name="method">The name of the method.</param>
673
            <param name="onProgress">The callback to invoke when progress updates are received.</param>
674
            <param name="args">The arguments</param>
675
            <returns>A task that represents when invocation returned.</returns>
676
        </member>
677
        <member name="M:Microsoft.AspNet.SignalR.Client.IHubProxy.Subscribe(System.String)">
678
            <summary>
679
            Registers an event for the hub.
680
            </summary>
681
            <param name="eventName">The name of the event</param>
682
            <returns>A <see cref="T:Microsoft.AspNet.SignalR.Client.Hubs.Subscription"/>.</returns>
683
        </member>
684
        <member name="P:Microsoft.AspNet.SignalR.Client.IHubProxy.JsonSerializer">
685
            <summary>
686
            Gets the serializer used by the connection.
687
            </summary>
688
        </member>
689
        <member name="M:Microsoft.AspNet.SignalR.Client.ErrorExtensions.GetError(System.Exception)">
690
            <summary>
691
            Simplifies error recognition by unwrapping complex exceptions.
692
            </summary>
693
            <param name="ex">The thrown exception.</param>
694
            <returns>An unwrapped exception in the form of a SignalRError.</returns>
695
        </member>
696
        <member name="M:Microsoft.AspNet.SignalR.Client.Infrastructure.TaskQueueMonitor.Dispose">
697
            <summary>
698
            Dispose off the timer
699
            </summary>
700
        </member>
701
        <member name="T:Microsoft.AspNet.SignalR.Client.Infrastructure.ThreadSafeInvoker">
702
            <summary>
703
            Allows for thread safe invocation of a delegate.
704
            </summary>
705
        </member>
706
        <member name="T:Microsoft.AspNet.SignalR.Client.SignalRError">
707
            <summary>
708
            Represents errors that are thrown by the SignalR client
709
            </summary>
710
        </member>
711
        <member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.#ctor(System.Exception)">
712
            <summary>
713
            Create custom SignalR based error.
714
            </summary>
715
            <param name="exception">The exception to unwrap</param>
716
        </member>
717
        <member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.StatusCode">
718
            <summary>
719
            The status code of the error (if it was a WebException)
720
            </summary>
721
        </member>
722
        <member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.ResponseBody">
723
            <summary>
724
            The response body of the error, if it was a WebException and the response is readable
725
            </summary>
726
        </member>
727
        <member name="P:Microsoft.AspNet.SignalR.Client.SignalRError.Exception">
728
            <summary>
729
            The unwrapped underlying exception
730
            </summary>
731
        </member>
732
        <member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.ToString">
733
            <summary>
734
            Allow a SignalRError to be directly written to an output stream
735
            </summary>
736
            <returns>Exception error</returns>
737
        </member>
738
        <member name="M:Microsoft.AspNet.SignalR.Client.SignalRError.Dispose">
739
            <summary>
740
            Dispose of the response
741
            </summary>
742
        </member>
743
        <member name="T:Microsoft.AspNet.SignalR.Client.KeepAliveData">
744
            <summary>
745
            Class to store all the Keep Alive properties
746
            </summary>
747
        </member>
748
        <member name="T:Microsoft.AspNet.SignalR.Client.Resources">
749
            <summary>
750
              A strongly-typed resource class, for looking up localized strings, etc.
751
            </summary>
752
        </member>
753
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.ResourceManager">
754
            <summary>
755
              Returns the cached ResourceManager instance used by this class.
756
            </summary>
757
        </member>
758
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Culture">
759
            <summary>
760
              Overrides the current thread's CurrentUICulture property for all
761
              resource lookups using this strongly typed resource class.
762
            </summary>
763
        </member>
764
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_CertsCanOnlyBeAddedWhenDisconnected">
765
            <summary>
766
              Looks up a localized string similar to Client Certificates cannot be added after the connection has started..
767
            </summary>
768
        </member>
769
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackArgumentTypeMismatch">
770
            <summary>
771
              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}.
772
            </summary>
773
        </member>
774
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ClientCallbackInvalidNumberOfArguments">
775
            <summary>
776
              Looks up a localized string similar to A client callback for event {0} with {1} argument(s) could not be found.
777
            </summary>
778
        </member>
779
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionCancelled">
780
            <summary>
781
              Looks up a localized string similar to The connection was stopped before it could be started..
782
            </summary>
783
        </member>
784
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ConnectionHasNotBeenEstablished">
785
            <summary>
786
              Looks up a localized string similar to The connection has not been established..
787
            </summary>
788
        </member>
789
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentConnectionDisconnected">
790
            <summary>
791
              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..
792
            </summary>
793
        </member>
794
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_DataCannotBeSentDuringWebSocketReconnect">
795
            <summary>
796
              Looks up a localized string similar to Data cannot be sent because the WebSocket connection is reconnecting..
797
            </summary>
798
        </member>
799
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_IncompatibleProtocolVersion">
800
            <summary>
801
              Looks up a localized string similar to You are using a version of the client that isn&apos;t compatible with the server. Client version {0}, server version {1}..
802
            </summary>
803
        </member>
804
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_InvalidUriScheme">
805
            <summary>
806
              Looks up a localized string similar to Uri scheme &apos;{0}&apos; is not valid. The only valid uri schemes are &apos;http&apos; and &apos;https&apos;..
807
            </summary>
808
        </member>
809
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_PossibleDeadlockDetected">
810
            <summary>
811
              Looks up a localized string similar to Possible deadlock detected. A callback registered with &quot;HubProxy.On&quot; or &quot;Connection.Received&quot; has been executing for at least {0} seconds..
812
            </summary>
813
        </member>
814
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProcessResponseBeforeStart">
815
            <summary>
816
              Looks up a localized string similar to The ProcessResponse method cannot be called before the transport is started..
817
            </summary>
818
        </member>
819
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ProxiesCannotBeAddedConnectionStarted">
820
            <summary>
821
              Looks up a localized string similar to A HubProxy cannot be added after the connection has been started..
822
            </summary>
823
        </member>
824
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ReconnectTimeout">
825
            <summary>
826
              Looks up a localized string similar to Couldn&apos;t reconnect within the configured timeout of {0}, disconnecting..
827
            </summary>
828
        </member>
829
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ReconnectWindowTimeout">
830
            <summary>
831
              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..
832
            </summary>
833
        </member>
834
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_ServerNegotiationFailed">
835
            <summary>
836
              Looks up a localized string similar to Server negotiation failed..
837
            </summary>
838
        </member>
839
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_StartFailed">
840
            <summary>
841
              Looks up a localized string similar to Error during start request. Stopping the connection..
842
            </summary>
843
        </member>
844
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TaskCancelledException">
845
            <summary>
846
              Looks up a localized string similar to Request failed - task cancelled..
847
            </summary>
848
        </member>
849
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportCannotBeReused">
850
            <summary>
851
              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..
852
            </summary>
853
        </member>
854
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportFailedToConnect">
855
            <summary>
856
              Looks up a localized string similar to Transport failed trying to connect..
857
            </summary>
858
        </member>
859
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_TransportTimedOutTryingToConnect">
860
            <summary>
861
              Looks up a localized string similar to Transport timed out trying to connect.
862
            </summary>
863
        </member>
864
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Error_UrlCantContainQueryStringDirectly">
865
            <summary>
866
              Looks up a localized string similar to Url cannot contain query string directly. Pass query string values in using available overload..
867
            </summary>
868
        </member>
869
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_ConnectionClosed">
870
            <summary>
871
              Looks up a localized string similar to Connection was disconnected before invocation result was received..
872
            </summary>
873
        </member>
874
        <member name="P:Microsoft.AspNet.SignalR.Client.Resources.Message_Reconnecting">
875
            <summary>
876
              Looks up a localized string similar to Connection started reconnecting before invocation result was received..
877
            </summary>
878
        </member>
879
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Opened">
880
            <summary>
881
            Invoked when the stream is open.
882
            </summary>
883
        </member>
884
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Closed">
885
            <summary>
886
            Invoked when the reader is closed while in the Processing state.
887
            </summary>
888
        </member>
889
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Data">
890
            <summary>
891
            Invoked when there's a message if received in the stream.
892
            </summary>
893
        </member>
894
        <member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.#ctor(System.IO.Stream)">
895
            <summary>
896
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader"/> class.
897
            </summary>
898
            <param name="stream">The stream to read asynchronously payloads from.</param>
899
        </member>
900
        <member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Start">
901
            <summary>
902
            Starts the reader.
903
            </summary>
904
        </member>
905
        <member name="M:Microsoft.AspNet.SignalR.Client.Transports.AsyncStreamReader.Close">
906
            <summary>
907
            Closes the connection and the underlying stream.
908
            </summary>
909
        </member>
910
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ClientTransportBase.Name">
911
            <summary>
912
            Gets transport name.
913
            </summary>
914
        </member>
915
        <member name="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader">
916
            <summary>
917
            Event source implementation for .NET. This isn't to the spec but it's enough to support SignalR's
918
            server.
919
            </summary>
920
        </member>
921
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.Message">
922
            <summary>
923
            Invoked when there's a message if received in the stream.
924
            </summary>
925
        </member>
926
        <member name="M:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader.#ctor(Microsoft.AspNet.SignalR.Client.IConnection,System.IO.Stream)">
927
            <summary>
928
            Initializes a new instance of the <see cref="T:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEvents.EventSourceStreamReader"/> class.
929
            </summary>
930
            <param name="connection">The connection associated with this event source</param>
931
            <param name="stream">The stream to read event source payloads from.</param>
932
        </member>
933
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.AutoTransport.SupportsKeepAlive">
934
            <summary>
935
            Indicates whether or not the active transport supports keep alive
936
            </summary>
937
        </member>
938
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ReconnectDelay">
939
            <summary>
940
            The time to wait after a connection drops to try reconnecting.
941
            </summary>
942
        </member>
943
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.ErrorDelay">
944
            <summary>
945
            The time to wait after an error happens to continue polling.
946
            </summary>
947
        </member>
948
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.SupportsKeepAlive">
949
            <summary>
950
            Indicates whether or not the transport supports keep alive
951
            </summary>
952
        </member>
953
        <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.StartPolling(Microsoft.AspNet.SignalR.Client.IConnection,System.String)">
954
            <summary>
955
            Starts the polling loop.
956
            </summary>
957
        </member>
958
        <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.StopPolling">
959
            <summary>
960
            Fully stops the polling loop.
961
            </summary>
962
        </member>
963
        <member name="M:Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.LostConnection(Microsoft.AspNet.SignalR.Client.IConnection)">
964
            <summary>
965
            Aborts the currently active polling request thereby forcing a reconnect.
966
            </summary>
967
        </member>
968
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.SupportsKeepAlive">
969
            <summary>
970
            Indicates whether or not the transport supports keep alive
971
            </summary>
972
        </member>
973
        <member name="P:Microsoft.AspNet.SignalR.Client.Transports.ServerSentEventsTransport.ReconnectDelay">
974
            <summary>
975
            The time to wait after a connection drops to try reconnecting.
976
            </summary>
977
        </member>
978
        <member name="T:Microsoft.AspNet.SignalR.Client.StateChange">
979
            <summary>
980
            Represents a change in the connection state.
981
            </summary>
982
        </member>
983
        <member name="M:Microsoft.AspNet.SignalR.Client.StateChange.#ctor(Microsoft.AspNet.SignalR.Client.ConnectionState,Microsoft.AspNet.SignalR.Client.ConnectionState)">
984
            <summary>
985
            Creates a new stance of <see cref="T:Microsoft.AspNet.SignalR.Client.StateChange"/>.
986
            </summary>
987
            <param name="oldState">The old state of the connection.</param>
988
            <param name="newState">The new state of the connection.</param>
989
        </member>
990
        <member name="P:Microsoft.AspNet.SignalR.Client.StateChange.OldState">
991
            <summary>
992
            Gets the old state of the connection.
993
            </summary>
994
        </member>
995
        <member name="P:Microsoft.AspNet.SignalR.Client.StateChange.NewState">
996
            <summary>
997
            Gets the new state of the connection.
998
            </summary>
999
        </member>
1000
    </members>
1001
</doc>
Test_/bin/Debug/Newtonsoft.Json.xml
1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Newtonsoft.Json</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Newtonsoft.Json.Bson.BsonReader">
8
            <summary>
9
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
10
            </summary>
11
        </member>
12
        <member name="T:Newtonsoft.Json.JsonReader">
13
            <summary>
14
            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
15
            </summary>
16
        </member>
17
        <member name="M:Newtonsoft.Json.JsonReader.#ctor">
18
            <summary>
19
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
20
            </summary>
21
        </member>
22
        <member name="M:Newtonsoft.Json.JsonReader.Read">
23
            <summary>
24
            Reads the next JSON token from the stream.
25
            </summary>
26
            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
27
        </member>
28
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
29
            <summary>
30
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
31
            </summary>
32
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
33
        </member>
34
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
35
            <summary>
36
            Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
37
            </summary>
38
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
39
        </member>
40
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
41
            <summary>
42
            Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
43
            </summary>
44
            <returns>A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
45
        </member>
46
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
47
            <summary>
48
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
49
            </summary>
50
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
51
        </member>
52
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
53
            <summary>
54
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
55
            </summary>
56
            <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
57
        </member>
58
        <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
59
            <summary>
60
            Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
61
            </summary>
62
            <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
63
        </member>
64
        <member name="M:Newtonsoft.Json.JsonReader.Skip">
65
            <summary>
66
            Skips the children of the current token.
67
            </summary>
68
        </member>
69
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
70
            <summary>
71
            Sets the current token.
72
            </summary>
73
            <param name="newToken">The new token.</param>
74
        </member>
75
        <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
76
            <summary>
77
            Sets the current token and value.
78
            </summary>
79
            <param name="newToken">The new token.</param>
80
            <param name="value">The value.</param>
81
        </member>
82
        <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
83
            <summary>
84
            Sets the state based on current token type.
85
            </summary>
86
        </member>
87
        <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
88
            <summary>
89
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
90
            </summary>
91
        </member>
92
        <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
93
            <summary>
94
            Releases unmanaged and - optionally - managed resources
95
            </summary>
96
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
97
        </member>
98
        <member name="M:Newtonsoft.Json.JsonReader.Close">
99
            <summary>
100
            Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
101
            </summary>
102
        </member>
103
        <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
104
            <summary>
105
            Gets the current reader state.
106
            </summary>
107
            <value>The current reader state.</value>
108
        </member>
109
        <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
110
            <summary>
111
            Gets or sets a value indicating whether the underlying stream or
112
            <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
113
            </summary>
114
            <value>
115
            true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
116
            the reader is closed; otherwise false. The default is true.
117
            </value>
118
        </member>
119
        <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
120
            <summary>
121
            Gets or sets a value indicating whether multiple pieces of JSON content can
122
            be read from a continuous stream without erroring.
123
            </summary>
124
            <value>
125
            true to support reading multiple pieces of JSON content; otherwise false. The default is false.
126
            </value>
127
        </member>
128
        <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
129
            <summary>
130
            Gets the quotation mark character used to enclose the value of a string.
131
            </summary>
132
        </member>
133
        <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
134
            <summary>
135
            Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
136
            </summary>
137
        </member>
138
        <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
139
            <summary>
140
            Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
141
            </summary>
142
        </member>
143
        <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
144
            <summary>
145
            Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
146
            </summary>
147
        </member>
148
        <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
149
            <summary>
150
            Get or set how custom date formatted strings are parsed when reading JSON.
151
            </summary>
152
        </member>
153
        <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
154
            <summary>
155
            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
156
            </summary>
157
        </member>
158
        <member name="P:Newtonsoft.Json.JsonReader.TokenType">
159
            <summary>
160
            Gets the type of the current JSON token. 
161
            </summary>
162
        </member>
163
        <member name="P:Newtonsoft.Json.JsonReader.Value">
164
            <summary>
165
            Gets the text value of the current JSON token.
166
            </summary>
167
        </member>
168
        <member name="P:Newtonsoft.Json.JsonReader.ValueType">
169
            <summary>
170
            Gets The Common Language Runtime (CLR) type for the current JSON token.
171
            </summary>
172
        </member>
173
        <member name="P:Newtonsoft.Json.JsonReader.Depth">
174
            <summary>
175
            Gets the depth of the current token in the JSON document.
176
            </summary>
177
            <value>The depth of the current token in the JSON document.</value>
178
        </member>
179
        <member name="P:Newtonsoft.Json.JsonReader.Path">
180
            <summary>
181
            Gets the path of the current JSON token. 
182
            </summary>
183
        </member>
184
        <member name="P:Newtonsoft.Json.JsonReader.Culture">
185
            <summary>
186
            Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
187
            </summary>
188
        </member>
189
        <member name="T:Newtonsoft.Json.JsonReader.State">
190
            <summary>
191
            Specifies the state of the reader.
192
            </summary>
193
        </member>
194
        <member name="F:Newtonsoft.Json.JsonReader.State.Start">
195
            <summary>
196
            The Read method has not been called.
197
            </summary>
198
        </member>
199
        <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
200
            <summary>
201
            The end of the file has been reached successfully.
202
            </summary>
203
        </member>
204
        <member name="F:Newtonsoft.Json.JsonReader.State.Property">
205
            <summary>
206
            Reader is at a property.
207
            </summary>
208
        </member>
209
        <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
210
            <summary>
211
            Reader is at the start of an object.
212
            </summary>
213
        </member>
214
        <member name="F:Newtonsoft.Json.JsonReader.State.Object">
215
            <summary>
216
            Reader is in an object.
217
            </summary>
218
        </member>
219
        <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
220
            <summary>
221
            Reader is at the start of an array.
222
            </summary>
223
        </member>
224
        <member name="F:Newtonsoft.Json.JsonReader.State.Array">
225
            <summary>
226
            Reader is in an array.
227
            </summary>
228
        </member>
229
        <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
230
            <summary>
231
            The Close method has been called.
232
            </summary>
233
        </member>
234
        <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
235
            <summary>
236
            Reader has just read a value.
237
            </summary>
238
        </member>
239
        <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
240
            <summary>
241
            Reader is at the start of a constructor.
242
            </summary>
243
        </member>
244
        <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
245
            <summary>
246
            Reader in a constructor.
247
            </summary>
248
        </member>
249
        <member name="F:Newtonsoft.Json.JsonReader.State.Error">
250
            <summary>
251
            An error occurred that prevents the read operation from continuing.
252
            </summary>
253
        </member>
254
        <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
255
            <summary>
256
            The end of the file has been reached successfully.
257
            </summary>
258
        </member>
259
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
260
            <summary>
261
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
262
            </summary>
263
            <param name="stream">The stream.</param>
264
        </member>
265
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
266
            <summary>
267
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
268
            </summary>
269
            <param name="reader">The reader.</param>
270
        </member>
271
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
272
            <summary>
273
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
274
            </summary>
275
            <param name="stream">The stream.</param>
276
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
277
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
278
        </member>
279
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)