Нет описания

SuperWebSocket.xml 73KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>SuperWebSocket</name>
  5. </assembly>
  6. <members>
  7. <member name="T:SuperWebSocket.Command.Binary`1">
  8. <summary>
  9. The command handling binary data
  10. </summary>
  11. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  12. </member>
  13. <member name="T:SuperWebSocket.Command.FragmentCommand`1">
  14. <summary>
  15. FragmentCommand
  16. </summary>
  17. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  18. </member>
  19. <member name="M:SuperWebSocket.Command.FragmentCommand`1.#ctor">
  20. <summary>
  21. Initializes a new instance of the <see cref="T:SuperWebSocket.Command.FragmentCommand`1"/> class.
  22. </summary>
  23. </member>
  24. <member name="M:SuperWebSocket.Command.FragmentCommand`1.CheckFrame(SuperWebSocket.Protocol.WebSocketDataFrame)">
  25. <summary>
  26. Checks the frame.
  27. </summary>
  28. <param name="frame">The frame.</param>
  29. <returns></returns>
  30. </member>
  31. <member name="M:SuperWebSocket.Command.FragmentCommand`1.CheckControlFrame(SuperWebSocket.Protocol.WebSocketDataFrame)">
  32. <summary>
  33. Checks the control frame.
  34. </summary>
  35. <param name="frame">The frame.</param>
  36. <returns></returns>
  37. </member>
  38. <member name="M:SuperWebSocket.Command.FragmentCommand`1.GetWebSocketData(System.Collections.Generic.IList{SuperWebSocket.Protocol.WebSocketDataFrame})">
  39. <summary>
  40. Gets data from websocket frames.
  41. </summary>
  42. <param name="frames">The frames.</param>
  43. <returns></returns>
  44. </member>
  45. <member name="M:SuperWebSocket.Command.FragmentCommand`1.GetWebSocketText(System.Collections.Generic.IList{SuperWebSocket.Protocol.WebSocketDataFrame})">
  46. <summary>
  47. Gets text string from websocket frames.
  48. </summary>
  49. <param name="frames">The frames.</param>
  50. <returns></returns>
  51. </member>
  52. <member name="M:SuperWebSocket.Command.FragmentCommand`1.GetWebSocketData(SuperWebSocket.Protocol.WebSocketDataFrame)">
  53. <summary>
  54. Gets data from a websocket frame.
  55. </summary>
  56. <param name="frame">The frame.</param>
  57. <returns></returns>
  58. </member>
  59. <member name="M:SuperWebSocket.Command.FragmentCommand`1.GetWebSocketText(SuperWebSocket.Protocol.WebSocketDataFrame)">
  60. <summary>
  61. Gets text string from a websocket frame.
  62. </summary>
  63. <param name="frame">The frame.</param>
  64. <returns></returns>
  65. </member>
  66. <member name="P:SuperWebSocket.Command.FragmentCommand`1.Utf8Encoding">
  67. <summary>
  68. Gets the UTF8 encoding which has been set ExceptionFallback.
  69. </summary>
  70. </member>
  71. <member name="M:SuperWebSocket.Command.Binary`1.ExecuteCommand(`0,SuperWebSocket.Protocol.IWebSocketFragment)">
  72. <summary>
  73. Executes the command.
  74. </summary>
  75. <param name="session">The session.</param>
  76. <param name="requestInfo">The request info.</param>
  77. </member>
  78. <member name="P:SuperWebSocket.Command.Binary`1.Name">
  79. <summary>
  80. Gets the name.
  81. </summary>
  82. </member>
  83. <member name="T:SuperWebSocket.Command.Close`1">
  84. <summary>
  85. The command handling close fragment
  86. </summary>
  87. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  88. </member>
  89. <member name="M:SuperWebSocket.Command.Close`1.ExecuteCommand(`0,SuperWebSocket.Protocol.IWebSocketFragment)">
  90. <summary>
  91. Executes the command.
  92. </summary>
  93. <param name="session">The session.</param>
  94. <param name="requestInfo">The request info.</param>
  95. </member>
  96. <member name="P:SuperWebSocket.Command.Close`1.Name">
  97. <summary>
  98. Gets the name.
  99. </summary>
  100. </member>
  101. <member name="T:SuperWebSocket.Command.Continuation`1">
  102. <summary>
  103. The command handling continuation fragment
  104. </summary>
  105. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  106. </member>
  107. <member name="M:SuperWebSocket.Command.Continuation`1.ExecuteCommand(`0,SuperWebSocket.Protocol.IWebSocketFragment)">
  108. <summary>
  109. Executes the command.
  110. </summary>
  111. <param name="session">The session.</param>
  112. <param name="requestInfo">The request info.</param>
  113. </member>
  114. <member name="P:SuperWebSocket.Command.Continuation`1.Name">
  115. <summary>
  116. Gets the name.
  117. </summary>
  118. </member>
  119. <member name="T:SuperWebSocket.Command.HandShake`1">
  120. <summary>
  121. The command handle handshake request
  122. </summary>
  123. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  124. </member>
  125. <member name="M:SuperWebSocket.Command.HandShake`1.ExecuteCommand(`0,SuperWebSocket.Protocol.IWebSocketFragment)">
  126. <summary>
  127. Executes the command.
  128. </summary>
  129. <param name="session">The session.</param>
  130. <param name="requestInfo">The request info.</param>
  131. </member>
  132. <member name="P:SuperWebSocket.Command.HandShake`1.Name">
  133. <summary>
  134. Gets the name.
  135. </summary>
  136. </member>
  137. <member name="T:SuperWebSocket.Command.Ping`1">
  138. <summary>
  139. The command handling Ping
  140. </summary>
  141. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  142. </member>
  143. <member name="M:SuperWebSocket.Command.Ping`1.ExecuteCommand(`0,SuperWebSocket.Protocol.IWebSocketFragment)">
  144. <summary>
  145. Executes the command.
  146. </summary>
  147. <param name="session">The session.</param>
  148. <param name="requestInfo">The request info.</param>
  149. </member>
  150. <member name="P:SuperWebSocket.Command.Ping`1.Name">
  151. <summary>
  152. Gets the name.
  153. </summary>
  154. </member>
  155. <member name="T:SuperWebSocket.Command.Plain`1">
  156. <summary>
  157. The command to handling text message in plain text of hybi00
  158. </summary>
  159. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  160. </member>
  161. <member name="M:SuperWebSocket.Command.Plain`1.ExecuteCommand(`0,SuperWebSocket.Protocol.IWebSocketFragment)">
  162. <summary>
  163. Executes the command.
  164. </summary>
  165. <param name="session">The session.</param>
  166. <param name="requestInfo">The request info.</param>
  167. </member>
  168. <member name="P:SuperWebSocket.Command.Plain`1.Name">
  169. <summary>
  170. Gets the name.
  171. </summary>
  172. </member>
  173. <member name="T:SuperWebSocket.Command.Pong`1">
  174. <summary>
  175. The command handling Pong
  176. </summary>
  177. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  178. </member>
  179. <member name="M:SuperWebSocket.Command.Pong`1.ExecuteCommand(`0,SuperWebSocket.Protocol.IWebSocketFragment)">
  180. <summary>
  181. Executes the command.
  182. </summary>
  183. <param name="session">The session.</param>
  184. <param name="requestInfo">The request info.</param>
  185. </member>
  186. <member name="P:SuperWebSocket.Command.Pong`1.Name">
  187. <summary>
  188. Gets the name.
  189. </summary>
  190. </member>
  191. <member name="T:SuperWebSocket.Command.Text`1">
  192. <summary>
  193. The command handling Text fragment
  194. </summary>
  195. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  196. </member>
  197. <member name="M:SuperWebSocket.Command.Text`1.ExecuteCommand(`0,SuperWebSocket.Protocol.IWebSocketFragment)">
  198. <summary>
  199. Executes the command.
  200. </summary>
  201. <param name="session">The session.</param>
  202. <param name="requestInfo">The request info.</param>
  203. </member>
  204. <member name="P:SuperWebSocket.Command.Text`1.Name">
  205. <summary>
  206. Gets the name.
  207. </summary>
  208. </member>
  209. <member name="T:SuperWebSocket.Config.CommandConfig">
  210. <summary>
  211. Command configuration
  212. </summary>
  213. </member>
  214. <member name="M:SuperWebSocket.Config.CommandConfig.OnDeserializeUnrecognizedAttribute(System.String,System.String)">
  215. <summary>
  216. Gets a value indicating whether an unknown attribute is encountered during deserialization.
  217. </summary>
  218. <param name="name">The name of the unrecognized attribute.</param>
  219. <param name="value">The value of the unrecognized attribute.</param>
  220. <returns>
  221. true when an unknown attribute is encountered while deserializing; otherwise, false.
  222. </returns>
  223. </member>
  224. <member name="P:SuperWebSocket.Config.CommandConfig.Options">
  225. <summary>
  226. Gets the options.
  227. </summary>
  228. </member>
  229. <member name="T:SuperWebSocket.Config.CommandConfigCollection">
  230. <summary>
  231. Command configuration collection
  232. </summary>
  233. </member>
  234. <member name="M:SuperWebSocket.Config.CommandConfigCollection.CreateNewElement">
  235. <summary>
  236. When overridden in a derived class, creates a new <see cref="T:System.Configuration.ConfigurationElement"/>.
  237. </summary>
  238. <returns>
  239. A new <see cref="T:System.Configuration.ConfigurationElement"/>.
  240. </returns>
  241. </member>
  242. <member name="M:SuperWebSocket.Config.CommandConfigCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  243. <summary>
  244. Gets the element key for a specified configuration element when overridden in a derived class.
  245. </summary>
  246. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for.</param>
  247. <returns>
  248. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  249. </returns>
  250. </member>
  251. <member name="M:SuperWebSocket.Config.CommandConfigCollection.GetEnumerator">
  252. <summary>
  253. Gets the enumerator.
  254. </summary>
  255. <returns></returns>
  256. </member>
  257. <member name="P:SuperWebSocket.Config.CommandConfigCollection.Item(System.Int32)">
  258. <summary>
  259. Gets or sets a property, attribute, or child element of this configuration element.
  260. </summary>
  261. <returns>The specified property, attribute, or child element</returns>
  262. </member>
  263. <member name="T:SuperWebSocket.Config.SubProtocolConfig">
  264. <summary>
  265. SubProtocol configuration
  266. </summary>
  267. </member>
  268. <member name="M:SuperWebSocket.Config.SubProtocolConfig.#ctor">
  269. <summary>
  270. Initializes a new instance of the <see cref="T:SuperWebSocket.Config.SubProtocolConfig"/> class.
  271. </summary>
  272. </member>
  273. <member name="P:SuperWebSocket.Config.SubProtocolConfig.Type">
  274. <summary>
  275. Gets the type.
  276. </summary>
  277. </member>
  278. <member name="P:SuperWebSocket.Config.SubProtocolConfig.Commands">
  279. <summary>
  280. Gets the commands.
  281. </summary>
  282. </member>
  283. <member name="T:SuperWebSocket.Config.SubProtocolConfigCollection">
  284. <summary>
  285. SubProtocol configuation collection
  286. </summary>
  287. </member>
  288. <member name="M:SuperWebSocket.Config.SubProtocolConfigCollection.CreateNewElement">
  289. <summary>
  290. When overridden in a derived class, creates a new <see cref="T:System.Configuration.ConfigurationElement"/>.
  291. </summary>
  292. <returns>
  293. A new <see cref="T:System.Configuration.ConfigurationElement"/>.
  294. </returns>
  295. </member>
  296. <member name="M:SuperWebSocket.Config.SubProtocolConfigCollection.GetElementKey(System.Configuration.ConfigurationElement)">
  297. <summary>
  298. Gets the element key for a specified configuration element when overridden in a derived class.
  299. </summary>
  300. <param name="element">The <see cref="T:System.Configuration.ConfigurationElement"/> to return the key for.</param>
  301. <returns>
  302. An <see cref="T:System.Object"/> that acts as the key for the specified <see cref="T:System.Configuration.ConfigurationElement"/>.
  303. </returns>
  304. </member>
  305. <member name="M:SuperWebSocket.Config.SubProtocolConfigCollection.GetEnumerator">
  306. <summary>
  307. Gets the enumerator.
  308. </summary>
  309. <returns></returns>
  310. </member>
  311. <member name="P:SuperWebSocket.Config.SubProtocolConfigCollection.CollectionType">
  312. <summary>
  313. Gets the type of the <see cref="T:System.Configuration.ConfigurationElementCollection"/>.
  314. </summary>
  315. <returns>The <see cref="T:System.Configuration.ConfigurationElementCollectionType"/> of this collection.</returns>
  316. </member>
  317. <member name="P:SuperWebSocket.Config.SubProtocolConfigCollection.ElementName">
  318. <summary>
  319. Gets the name used to identify this collection of elements in the configuration file when overridden in a derived class.
  320. </summary>
  321. <returns>The name of the collection; otherwise, an empty string. The default is an empty string.</returns>
  322. </member>
  323. <member name="T:SuperWebSocket.Extensions">
  324. <summary>
  325. Extension class
  326. </summary>
  327. </member>
  328. <member name="M:SuperWebSocket.Extensions.AppendFormatWithCrCf(System.Text.StringBuilder,System.String,System.Object)">
  329. <summary>
  330. Appends in the format with CrCf as suffix.
  331. </summary>
  332. <param name="builder">The builder.</param>
  333. <param name="format">The format.</param>
  334. <param name="arg">The arg.</param>
  335. </member>
  336. <member name="M:SuperWebSocket.Extensions.AppendFormatWithCrCf(System.Text.StringBuilder,System.String,System.Object[])">
  337. <summary>
  338. Appends in the format with CrCf as suffix.
  339. </summary>
  340. <param name="builder">The builder.</param>
  341. <param name="format">The format.</param>
  342. <param name="args">The args.</param>
  343. </member>
  344. <member name="M:SuperWebSocket.Extensions.AppendWithCrCf(System.Text.StringBuilder,System.String)">
  345. <summary>
  346. Appends with CrCf as suffix.
  347. </summary>
  348. <param name="builder">The builder.</param>
  349. <param name="content">The content.</param>
  350. </member>
  351. <member name="M:SuperWebSocket.Extensions.AppendWithCrCf(System.Text.StringBuilder)">
  352. <summary>
  353. Appends with CrCf as suffix.
  354. </summary>
  355. <param name="builder">The builder.</param>
  356. </member>
  357. <member name="T:SuperWebSocket.IBinaryDataConverter">
  358. <summary>
  359. The converter interface for converting binary data to text message
  360. </summary>
  361. </member>
  362. <member name="M:SuperWebSocket.IBinaryDataConverter.ToString(System.Byte[],System.Int32,System.Int32)">
  363. <summary>
  364. Returns a <see cref="T:System.String"/> that represents this instance.
  365. </summary>
  366. <param name="data">The data.</param>
  367. <param name="offset">The offset.</param>
  368. <param name="length">The length.</param>
  369. <returns>
  370. A <see cref="T:System.String"/> that represents this instance.
  371. </returns>
  372. </member>
  373. <member name="T:SuperWebSocket.JsonWebSocketSession">
  374. <summary>
  375. Json websocket session
  376. </summary>
  377. </member>
  378. <member name="T:SuperWebSocket.JsonWebSocketSession`1">
  379. <summary>
  380. Json websocket session
  381. </summary>
  382. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  383. </member>
  384. <member name="T:SuperWebSocket.WebSocketSession`1">
  385. <summary>
  386. WebSocket AppSession class
  387. </summary>
  388. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  389. </member>
  390. <member name="T:SuperWebSocket.IWebSocketSession">
  391. <summary>
  392. WebSocketSession basic interface
  393. </summary>
  394. </member>
  395. <member name="M:SuperWebSocket.IWebSocketSession.SendRawData(System.Byte[],System.Int32,System.Int32)">
  396. <summary>
  397. Sends the raw binary response.
  398. </summary>
  399. <param name="data">The data.</param>
  400. <param name="offset">The offset.</param>
  401. <param name="length">The length.</param>
  402. </member>
  403. <member name="M:SuperWebSocket.IWebSocketSession.GetAvailableSubProtocol(System.String)">
  404. <summary>
  405. Gets the available sub protocol.
  406. </summary>
  407. <param name="protocol">The protocol.</param>
  408. <returns></returns>
  409. </member>
  410. <member name="P:SuperWebSocket.IWebSocketSession.Method">
  411. <summary>
  412. Gets or sets the method.
  413. </summary>
  414. <value>
  415. The method.
  416. </value>
  417. </member>
  418. <member name="P:SuperWebSocket.IWebSocketSession.Host">
  419. <summary>
  420. Gets the host.
  421. </summary>
  422. </member>
  423. <member name="P:SuperWebSocket.IWebSocketSession.Path">
  424. <summary>
  425. Gets or sets the path.
  426. </summary>
  427. <value>
  428. The path.
  429. </value>
  430. </member>
  431. <member name="P:SuperWebSocket.IWebSocketSession.HttpVersion">
  432. <summary>
  433. Gets or sets the HTTP version.
  434. </summary>
  435. <value>
  436. The HTTP version.
  437. </value>
  438. </member>
  439. <member name="P:SuperWebSocket.IWebSocketSession.SecWebSocketVersion">
  440. <summary>
  441. Gets the sec web socket version.
  442. </summary>
  443. </member>
  444. <member name="P:SuperWebSocket.IWebSocketSession.Origin">
  445. <summary>
  446. Gets the origin.
  447. </summary>
  448. </member>
  449. <member name="P:SuperWebSocket.IWebSocketSession.UriScheme">
  450. <summary>
  451. Gets the URI scheme.
  452. </summary>
  453. </member>
  454. <member name="P:SuperWebSocket.IWebSocketSession.Handshaked">
  455. <summary>
  456. Gets a value indicating whether this <see cref="T:SuperWebSocket.IWebSocketSession"/> is handshaked.
  457. </summary>
  458. <value>
  459. <c>true</c> if handshaked; otherwise, <c>false</c>.
  460. </value>
  461. </member>
  462. <member name="P:SuperWebSocket.IWebSocketSession.AppServer">
  463. <summary>
  464. Gets the app server.
  465. </summary>
  466. </member>
  467. <member name="P:SuperWebSocket.IWebSocketSession.ProtocolProcessor">
  468. <summary>
  469. Gets or sets the protocol processor.
  470. </summary>
  471. <value>
  472. The protocol processor.
  473. </value>
  474. </member>
  475. <member name="M:SuperWebSocket.WebSocketSession`1.OnInit">
  476. <summary>
  477. Called when [init].
  478. </summary>
  479. </member>
  480. <member name="M:SuperWebSocket.WebSocketSession`1.SetCookie">
  481. <summary>
  482. Sets the cookie.
  483. </summary>
  484. </member>
  485. <member name="M:SuperWebSocket.WebSocketSession`1.Send(System.String)">
  486. <summary>
  487. Sends the response.
  488. </summary>
  489. <param name="message">The message.</param>
  490. </member>
  491. <member name="M:SuperWebSocket.WebSocketSession`1.Send(System.Byte[],System.Int32,System.Int32)">
  492. <summary>
  493. Sends the response.
  494. </summary>
  495. <param name="data">The data.</param>
  496. <param name="offset">The offset.</param>
  497. <param name="length">The length.</param>
  498. </member>
  499. <member name="M:SuperWebSocket.WebSocketSession`1.Send(System.ArraySegment{System.Byte})">
  500. <summary>
  501. Sends the response.
  502. </summary>
  503. <param name="segment">The segment.</param>
  504. </member>
  505. <member name="M:SuperWebSocket.WebSocketSession`1.SuperWebSocket#IWebSocketSession#SendRawData(System.Byte[],System.Int32,System.Int32)">
  506. <summary>
  507. Sends the raw binary data.
  508. </summary>
  509. <param name="data">The data.</param>
  510. <param name="offset">The offset.</param>
  511. <param name="length">The length.</param>
  512. </member>
  513. <member name="M:SuperWebSocket.WebSocketSession`1.CloseWithHandshake(System.String)">
  514. <summary>
  515. Closes the with handshake.
  516. </summary>
  517. <param name="reasonText">The reason text.</param>
  518. </member>
  519. <member name="M:SuperWebSocket.WebSocketSession`1.CloseWithHandshake(System.Int32,System.String)">
  520. <summary>
  521. Closes the with handshake.
  522. </summary>
  523. <param name="statusCode">The status code.</param>
  524. <param name="reasonText">The reason text.</param>
  525. </member>
  526. <member name="M:SuperWebSocket.WebSocketSession`1.SendCloseHandshakeResponse(System.Int32)">
  527. <summary>
  528. Sends the close handshake response.
  529. </summary>
  530. <param name="statusCode">The status code.</param>
  531. </member>
  532. <member name="M:SuperWebSocket.WebSocketSession`1.Close(SuperSocket.SocketBase.CloseReason)">
  533. <summary>
  534. Closes the specified reason.
  535. </summary>
  536. <param name="reason">The reason.</param>
  537. </member>
  538. <member name="M:SuperWebSocket.WebSocketSession`1.HandleUnknownCommand(SuperWebSocket.SubProtocol.SubRequestInfo)">
  539. <summary>
  540. Handles the unknown command.
  541. </summary>
  542. <param name="requestInfo">The request info.</param>
  543. </member>
  544. <member name="M:SuperWebSocket.WebSocketSession`1.HandleUnknownRequest(SuperWebSocket.Protocol.IWebSocketFragment)">
  545. <summary>
  546. Handles the unknown request.
  547. </summary>
  548. <param name="requestInfo">The request info.</param>
  549. </member>
  550. <member name="P:SuperWebSocket.WebSocketSession`1.Method">
  551. <summary>
  552. Gets or sets the method.
  553. </summary>
  554. <value>
  555. The method.
  556. </value>
  557. </member>
  558. <member name="P:SuperWebSocket.WebSocketSession`1.Path">
  559. <summary>
  560. Gets or sets the path.
  561. </summary>
  562. <value>
  563. The path.
  564. </value>
  565. </member>
  566. <member name="P:SuperWebSocket.WebSocketSession`1.HttpVersion">
  567. <summary>
  568. Gets or sets the HTTP version.
  569. </summary>
  570. <value>
  571. The HTTP version.
  572. </value>
  573. </member>
  574. <member name="P:SuperWebSocket.WebSocketSession`1.Host">
  575. <summary>
  576. Gets the host.
  577. </summary>
  578. </member>
  579. <member name="P:SuperWebSocket.WebSocketSession`1.Origin">
  580. <summary>
  581. Gets the origin.
  582. </summary>
  583. </member>
  584. <member name="P:SuperWebSocket.WebSocketSession`1.Upgrade">
  585. <summary>
  586. Gets the upgrade.
  587. </summary>
  588. </member>
  589. <member name="P:SuperWebSocket.WebSocketSession`1.Connection">
  590. <summary>
  591. Gets the connection.
  592. </summary>
  593. </member>
  594. <member name="P:SuperWebSocket.WebSocketSession`1.SecWebSocketVersion">
  595. <summary>
  596. Gets the sec web socket version.
  597. </summary>
  598. </member>
  599. <member name="P:SuperWebSocket.WebSocketSession`1.SecWebSocketProtocol">
  600. <summary>
  601. Gets the sec web socket protocol.
  602. </summary>
  603. </member>
  604. <member name="P:SuperWebSocket.WebSocketSession`1.CurrentToken">
  605. <summary>
  606. Gets the current token.
  607. </summary>
  608. </member>
  609. <member name="P:SuperWebSocket.WebSocketSession`1.AppServer">
  610. <summary>
  611. Gets the app server.
  612. </summary>
  613. </member>
  614. <member name="P:SuperWebSocket.WebSocketSession`1.UriScheme">
  615. <summary>
  616. Gets the URI scheme, ws or wss
  617. </summary>
  618. </member>
  619. <member name="P:SuperWebSocket.WebSocketSession`1.SubProtocol">
  620. <summary>
  621. Gets the sub protocol.
  622. </summary>
  623. </member>
  624. <member name="P:SuperWebSocket.WebSocketSession`1.Handshaked">
  625. <summary>
  626. Gets a value indicating whether this <see cref="T:SuperWebSocket.IWebSocketSession"/> is handshaked.
  627. </summary>
  628. <value>
  629. <c>true</c> if handshaked; otherwise, <c>false</c>.
  630. </value>
  631. </member>
  632. <member name="P:SuperWebSocket.WebSocketSession`1.InClosing">
  633. <summary>
  634. Gets a value indicating whether the session [in closing].
  635. </summary>
  636. <value>
  637. <c>true</c> if [in closing]; otherwise, <c>false</c>.
  638. </value>
  639. </member>
  640. <member name="P:SuperWebSocket.WebSocketSession`1.Cookies">
  641. <summary>
  642. Gets the cookies.
  643. </summary>
  644. </member>
  645. <member name="P:SuperWebSocket.WebSocketSession`1.ProtocolProcessor">
  646. <summary>
  647. Gets or sets the protocol processor.
  648. </summary>
  649. <value>
  650. The protocol processor.
  651. </value>
  652. </member>
  653. <member name="M:SuperWebSocket.JsonWebSocketSession`1.SendJsonMessage(System.String,System.Object)">
  654. <summary>
  655. Sends the json message.
  656. </summary>
  657. <param name="name">The name.</param>
  658. <param name="content">The content.</param>
  659. </member>
  660. <member name="T:SuperWebSocket.Protocol.CloseStatusCodeHybi10">
  661. <summary>
  662. Close status code for Hybi10
  663. </summary>
  664. </member>
  665. <member name="T:SuperWebSocket.Protocol.ICloseStatusCode">
  666. <summary>
  667. Close status code interface
  668. </summary>
  669. </member>
  670. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.ExtensionNotMatch">
  671. <summary>
  672. Gets the code for extension not match.
  673. </summary>
  674. </member>
  675. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.GoingAway">
  676. <summary>
  677. Gets the code for going away.
  678. </summary>
  679. </member>
  680. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.InvalidUTF8">
  681. <summary>
  682. Gets the code for invalid UT f8.
  683. </summary>
  684. </member>
  685. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.NormalClosure">
  686. <summary>
  687. Gets the code for normal closure.
  688. </summary>
  689. </member>
  690. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.NotAcceptableData">
  691. <summary>
  692. Gets the code for not acceptable data.
  693. </summary>
  694. </member>
  695. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.ProtocolError">
  696. <summary>
  697. Gets the code for protocol error.
  698. </summary>
  699. </member>
  700. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.TLSHandshakeFailure">
  701. <summary>
  702. Gets the code for TLS handshake failure.
  703. </summary>
  704. </member>
  705. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.TooLargeFrame">
  706. <summary>
  707. Gets the code for too large frame.
  708. </summary>
  709. </member>
  710. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.UnexpectedCondition">
  711. <summary>
  712. Gets the code for unexpected condition.
  713. </summary>
  714. </member>
  715. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.ViolatePolicy">
  716. <summary>
  717. Gets the code for violate policy.
  718. </summary>
  719. </member>
  720. <member name="P:SuperWebSocket.Protocol.ICloseStatusCode.NoStatusCode">
  721. <summary>
  722. Gets the code for no status code.
  723. </summary>
  724. </member>
  725. <member name="M:SuperWebSocket.Protocol.CloseStatusCodeHybi10.#ctor">
  726. <summary>
  727. Initializes a new instance of the <see cref="T:SuperWebSocket.Protocol.CloseStatusCodeHybi10"/> class.
  728. </summary>
  729. </member>
  730. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.NormalClosure">
  731. <summary>
  732. Gets the code for normal closure.
  733. </summary>
  734. </member>
  735. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.GoingAway">
  736. <summary>
  737. Gets the code for going away.
  738. </summary>
  739. </member>
  740. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.ProtocolError">
  741. <summary>
  742. Gets the code for protocol error.
  743. </summary>
  744. </member>
  745. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.NotAcceptableData">
  746. <summary>
  747. Gets the code for not acceptable data.
  748. </summary>
  749. </member>
  750. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.TooLargeFrame">
  751. <summary>
  752. Gets the code for too large frame.
  753. </summary>
  754. </member>
  755. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.InvalidUTF8">
  756. <summary>
  757. Gets the code for invalid UT f8.
  758. </summary>
  759. </member>
  760. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.ViolatePolicy">
  761. <summary>
  762. Gets the code for violate policy.
  763. </summary>
  764. </member>
  765. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.ExtensionNotMatch">
  766. <summary>
  767. Gets the code for extension not match.
  768. </summary>
  769. </member>
  770. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.UnexpectedCondition">
  771. <summary>
  772. Gets the code for unexpected condition.
  773. </summary>
  774. </member>
  775. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.TLSHandshakeFailure">
  776. <summary>
  777. Gets the code for TLS handshake failure.
  778. </summary>
  779. </member>
  780. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeHybi10.NoStatusCode">
  781. <summary>
  782. Gets the code for no status code.
  783. </summary>
  784. </member>
  785. <member name="T:SuperWebSocket.Protocol.CloseStatusCodeRfc6455">
  786. <summary>
  787. Close status code for rfc6455
  788. </summary>
  789. </member>
  790. <member name="M:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.#ctor">
  791. <summary>
  792. Initializes a new instance of the <see cref="T:SuperWebSocket.Protocol.CloseStatusCodeRfc6455"/> class.
  793. </summary>
  794. </member>
  795. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.NormalClosure">
  796. <summary>
  797. Gets the code for normal closure.
  798. </summary>
  799. </member>
  800. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.GoingAway">
  801. <summary>
  802. Gets the code for going away.
  803. </summary>
  804. </member>
  805. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.ProtocolError">
  806. <summary>
  807. Gets the code for protocol error.
  808. </summary>
  809. </member>
  810. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.NotAcceptableData">
  811. <summary>
  812. Gets the code for not acceptable data.
  813. </summary>
  814. </member>
  815. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.TooLargeFrame">
  816. <summary>
  817. Gets the code for too large frame.
  818. </summary>
  819. </member>
  820. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.InvalidUTF8">
  821. <summary>
  822. Gets the code for invalid UT f8.
  823. </summary>
  824. </member>
  825. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.ViolatePolicy">
  826. <summary>
  827. Gets the code for violate policy.
  828. </summary>
  829. </member>
  830. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.ExtensionNotMatch">
  831. <summary>
  832. Gets the code for extension not match.
  833. </summary>
  834. </member>
  835. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.UnexpectedCondition">
  836. <summary>
  837. Gets the code for unexpected condition.
  838. </summary>
  839. </member>
  840. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.TLSHandshakeFailure">
  841. <summary>
  842. Gets the code for TLS handshake failure.
  843. </summary>
  844. </member>
  845. <member name="P:SuperWebSocket.Protocol.CloseStatusCodeRfc6455.NoStatusCode">
  846. <summary>
  847. Gets the code for no status code.
  848. </summary>
  849. </member>
  850. <member name="T:SuperWebSocket.Protocol.DraftHybi00Processor">
  851. <summary>
  852. http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-00
  853. </summary>
  854. </member>
  855. <member name="T:SuperWebSocket.Protocol.IProtocolProcessor">
  856. <summary>
  857. Protocol processor interface
  858. </summary>
  859. </member>
  860. <member name="M:SuperWebSocket.Protocol.IProtocolProcessor.Handshake(SuperWebSocket.IWebSocketSession,SuperWebSocket.Protocol.WebSocketReceiveFilterBase,SuperSocket.SocketBase.Protocol.IReceiveFilter{SuperWebSocket.Protocol.IWebSocketFragment}@)">
  861. <summary>
  862. Handshakes the specified session.
  863. </summary>
  864. <param name="session">The session.</param>
  865. <param name="previousFilter">The previous filter.</param>
  866. <param name="dataFrameReader">The data frame reader.</param>
  867. <returns></returns>
  868. </member>
  869. <member name="M:SuperWebSocket.Protocol.IProtocolProcessor.SendMessage(SuperWebSocket.IWebSocketSession,System.String)">
  870. <summary>
  871. Sends the message.
  872. </summary>
  873. <param name="session">The session.</param>
  874. <param name="message">The message.</param>
  875. </member>
  876. <member name="M:SuperWebSocket.Protocol.IProtocolProcessor.SendData(SuperWebSocket.IWebSocketSession,System.Byte[],System.Int32,System.Int32)">
  877. <summary>
  878. Sends the data.
  879. </summary>
  880. <param name="session">The session.</param>
  881. <param name="data">The data.</param>
  882. <param name="offset">The offset.</param>
  883. <param name="length">The length.</param>
  884. </member>
  885. <member name="M:SuperWebSocket.Protocol.IProtocolProcessor.SendCloseHandshake(SuperWebSocket.IWebSocketSession,System.Int32,System.String)">
  886. <summary>
  887. Sends the close handshake.
  888. </summary>
  889. <param name="session">The session.</param>
  890. <param name="statusCode">The status code.</param>
  891. <param name="closeReason">The close reason.</param>
  892. </member>
  893. <member name="M:SuperWebSocket.Protocol.IProtocolProcessor.SendPong(SuperWebSocket.IWebSocketSession,System.Byte[])">
  894. <summary>
  895. Sends the pong.
  896. </summary>
  897. <param name="session">The session.</param>
  898. <param name="pong">The pong.</param>
  899. </member>
  900. <member name="M:SuperWebSocket.Protocol.IProtocolProcessor.SendPing(SuperWebSocket.IWebSocketSession,System.Byte[])">
  901. <summary>
  902. Sends the ping.
  903. </summary>
  904. <param name="session">The session.</param>
  905. <param name="ping">The ping.</param>
  906. </member>
  907. <member name="M:SuperWebSocket.Protocol.IProtocolProcessor.IsValidCloseCode(System.Int32)">
  908. <summary>
  909. Determines whether [is valid close code] [the specified code].
  910. </summary>
  911. <param name="code">The code.</param>
  912. <returns>
  913. <c>true</c> if [is valid close code] [the specified code]; otherwise, <c>false</c>.
  914. </returns>
  915. </member>
  916. <member name="P:SuperWebSocket.Protocol.IProtocolProcessor.CanSendBinaryData">
  917. <summary>
  918. Gets a value indicating whether this instance can send binary data.
  919. </summary>
  920. <value>
  921. <c>true</c> if this instance can send binary data; otherwise, <c>false</c>.
  922. </value>
  923. </member>
  924. <member name="P:SuperWebSocket.Protocol.IProtocolProcessor.CloseStatusClode">
  925. <summary>
  926. Gets the close status clode.
  927. </summary>
  928. </member>
  929. <member name="P:SuperWebSocket.Protocol.IProtocolProcessor.NextProcessor">
  930. <summary>
  931. Gets or sets the next processor.
  932. </summary>
  933. <value>
  934. The next processor.
  935. </value>
  936. </member>
  937. <member name="P:SuperWebSocket.Protocol.IProtocolProcessor.Version">
  938. <summary>
  939. Gets the version of current protocol.
  940. </summary>
  941. </member>
  942. <member name="T:SuperWebSocket.Protocol.DraftHybi10Processor">
  943. <summary>
  944. http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-10
  945. </summary>
  946. </member>
  947. <member name="T:SuperWebSocket.Protocol.HandshakeRequest">
  948. <summary>
  949. Handshake request
  950. </summary>
  951. </member>
  952. <member name="T:SuperWebSocket.Protocol.IWebSocketFragment">
  953. <summary>
  954. WebSocketFragment request info
  955. </summary>
  956. </member>
  957. <member name="P:SuperWebSocket.Protocol.HandshakeRequest.Key">
  958. <summary>
  959. Gets the key of this request.
  960. </summary>
  961. </member>
  962. <member name="T:SuperWebSocket.Protocol.MultipleProtocolSwitchProcessor">
  963. <summary>
  964. http://tools.ietf.org/html/rfc6455#section-4.4
  965. </summary>
  966. </member>
  967. <member name="T:SuperWebSocket.Protocol.PlainFragment">
  968. <summary>
  969. Plain text fragment
  970. </summary>
  971. </member>
  972. <member name="M:SuperWebSocket.Protocol.PlainFragment.#ctor(System.String)">
  973. <summary>
  974. Initializes a new instance of the <see cref="T:SuperWebSocket.Protocol.PlainFragment"/> class.
  975. </summary>
  976. <param name="message">The message.</param>
  977. </member>
  978. <member name="P:SuperWebSocket.Protocol.PlainFragment.Message">
  979. <summary>
  980. Gets the message.
  981. </summary>
  982. </member>
  983. <member name="P:SuperWebSocket.Protocol.PlainFragment.Key">
  984. <summary>
  985. Gets the key of this request.
  986. </summary>
  987. </member>
  988. <member name="T:SuperWebSocket.Protocol.Rfc6455Processor">
  989. <summary>
  990. http://tools.ietf.org/html/rfc6455
  991. </summary>
  992. </member>
  993. <member name="T:SuperWebSocket.Protocol.WebSocketReceiveFilterBase">
  994. <summary>
  995. WebSocketReceiveFilter basis
  996. </summary>
  997. </member>
  998. <member name="F:SuperWebSocket.Protocol.WebSocketReceiveFilterBase.SecKey3Len">
  999. <summary>
  1000. The length of Sec3Key
  1001. </summary>
  1002. </member>
  1003. <member name="M:SuperWebSocket.Protocol.WebSocketReceiveFilterBase.#ctor(SuperWebSocket.IWebSocketSession)">
  1004. <summary>
  1005. Initializes a new instance of the <see cref="T:SuperWebSocket.Protocol.WebSocketReceiveFilterBase"/> class.
  1006. </summary>
  1007. <param name="session">The session.</param>
  1008. </member>
  1009. <member name="M:SuperWebSocket.Protocol.WebSocketReceiveFilterBase.#ctor(SuperWebSocket.Protocol.WebSocketReceiveFilterBase)">
  1010. <summary>
  1011. Initializes a new instance of the <see cref="T:SuperWebSocket.Protocol.WebSocketReceiveFilterBase"/> class.
  1012. </summary>
  1013. <param name="previousReceiveFilter">The previous receive filter.</param>
  1014. </member>
  1015. <member name="M:SuperWebSocket.Protocol.WebSocketReceiveFilterBase.Handshake(SuperWebSocket.Protocol.IProtocolProcessor,SuperWebSocket.IWebSocketSession)">
  1016. <summary>
  1017. Handshakes the specified protocol processor.
  1018. </summary>
  1019. <param name="protocolProcessor">The protocol processor.</param>
  1020. <param name="session">The session.</param>
  1021. <returns></returns>
  1022. </member>
  1023. <member name="P:SuperWebSocket.Protocol.WebSocketReceiveFilterBase.HandshakeRequestInfo">
  1024. <summary>
  1025. Gets the handshake request info.
  1026. </summary>
  1027. </member>
  1028. <member name="M:SuperWebSocket.Protocol.WebSocketDataReceiveFilter.Reset">
  1029. <summary>
  1030. Resets this instance.
  1031. </summary>
  1032. </member>
  1033. <member name="T:SuperWebSocket.SubProtocol.AsyncJsonSubCommand`1">
  1034. <summary>
  1035. Async json sub command
  1036. </summary>
  1037. <typeparam name="TJsonCommandInfo">The type of the json command info.</typeparam>
  1038. </member>
  1039. <member name="T:SuperWebSocket.SubProtocol.AsyncJsonSubCommand`2">
  1040. <summary>
  1041. Async json sub command
  1042. </summary>
  1043. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  1044. <typeparam name="TJsonCommandInfo">The type of the json command info.</typeparam>
  1045. </member>
  1046. <member name="T:SuperWebSocket.SubProtocol.JsonSubCommandBase`2">
  1047. <summary>
  1048. Json SubCommand base
  1049. </summary>
  1050. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  1051. <typeparam name="TJsonCommandInfo">The type of the json command info.</typeparam>
  1052. </member>
  1053. <member name="T:SuperWebSocket.SubProtocol.SubCommandBase`1">
  1054. <summary>
  1055. SubCommand base
  1056. </summary>
  1057. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  1058. </member>
  1059. <member name="T:SuperWebSocket.SubProtocol.ISubCommand`1">
  1060. <summary>
  1061. SubCommand interface
  1062. </summary>
  1063. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  1064. </member>
  1065. <member name="M:SuperWebSocket.SubProtocol.ISubCommand`1.ExecuteCommand(`0,SuperWebSocket.SubProtocol.SubRequestInfo)">
  1066. <summary>
  1067. Executes the command.
  1068. </summary>
  1069. <param name="session">The session.</param>
  1070. <param name="requestInfo">The request info.</param>
  1071. </member>
  1072. <member name="T:SuperWebSocket.SubProtocol.ISubCommandFilterLoader">
  1073. <summary>
  1074. The basic interface of sub command filter loader
  1075. </summary>
  1076. </member>
  1077. <member name="M:SuperWebSocket.SubProtocol.ISubCommandFilterLoader.LoadSubCommandFilters(System.Collections.Generic.IEnumerable{SuperWebSocket.SubProtocol.SubCommandFilterAttribute})">
  1078. <summary>
  1079. Loads the sub command filters.
  1080. </summary>
  1081. <param name="globalFilters">The global filters.</param>
  1082. </member>
  1083. <member name="M:SuperWebSocket.SubProtocol.SubCommandBase`1.ExecuteCommand(`0,SuperWebSocket.SubProtocol.SubRequestInfo)">
  1084. <summary>
  1085. Executes the command.
  1086. </summary>
  1087. <param name="session">The session.</param>
  1088. <param name="requestInfo">The request info.</param>
  1089. </member>
  1090. <member name="P:SuperWebSocket.SubProtocol.SubCommandBase`1.Name">
  1091. <summary>
  1092. Gets the name.
  1093. </summary>
  1094. </member>
  1095. <member name="M:SuperWebSocket.SubProtocol.JsonSubCommandBase`2.#ctor">
  1096. <summary>
  1097. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.JsonSubCommandBase`2"/> class.
  1098. </summary>
  1099. </member>
  1100. <member name="M:SuperWebSocket.SubProtocol.JsonSubCommandBase`2.ExecuteCommand(`0,SuperWebSocket.SubProtocol.SubRequestInfo)">
  1101. <summary>
  1102. Executes the command.
  1103. </summary>
  1104. <param name="session">The session.</param>
  1105. <param name="requestInfo">The request info.</param>
  1106. </member>
  1107. <member name="M:SuperWebSocket.SubProtocol.JsonSubCommandBase`2.ExecuteJsonCommand(`0,`1)">
  1108. <summary>
  1109. Executes the json command.
  1110. </summary>
  1111. <param name="session">The session.</param>
  1112. <param name="commandInfo">The command info.</param>
  1113. </member>
  1114. <member name="M:SuperWebSocket.SubProtocol.JsonSubCommandBase`2.GetJsonMessage(`0,System.String,System.String,System.Object)">
  1115. <summary>
  1116. Gets the json message.
  1117. </summary>
  1118. <param name="session">The session.</param>
  1119. <param name="name">The name.</param>
  1120. <param name="token">The token.</param>
  1121. <param name="content">The content.</param>
  1122. <returns></returns>
  1123. </member>
  1124. <member name="M:SuperWebSocket.SubProtocol.AsyncJsonSubCommand`2.#ctor">
  1125. <summary>
  1126. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.AsyncJsonSubCommand`2"/> class.
  1127. </summary>
  1128. </member>
  1129. <member name="M:SuperWebSocket.SubProtocol.AsyncJsonSubCommand`2.ExecuteJsonCommand(`0,`1)">
  1130. <summary>
  1131. Executes the json command.
  1132. </summary>
  1133. <param name="session">The session.</param>
  1134. <param name="commandInfo">The command info.</param>
  1135. </member>
  1136. <member name="M:SuperWebSocket.SubProtocol.AsyncJsonSubCommand`2.ExecuteAsyncJsonCommand(`0,System.String,`1)">
  1137. <summary>
  1138. Executes the async json command.
  1139. </summary>
  1140. <param name="session">The session.</param>
  1141. <param name="token">The token.</param>
  1142. <param name="commandInfo">The command info.</param>
  1143. </member>
  1144. <member name="M:SuperWebSocket.SubProtocol.AsyncJsonSubCommand`2.SendJsonMessage(`0,System.String,System.Object)">
  1145. <summary>
  1146. Sends the json message.
  1147. </summary>
  1148. <param name="session">The session.</param>
  1149. <param name="token">The token.</param>
  1150. <param name="content">The content.</param>
  1151. </member>
  1152. <member name="M:SuperWebSocket.SubProtocol.AsyncJsonSubCommand`2.SendJsonMessage(`0,System.String,System.String,System.Object)">
  1153. <summary>
  1154. Sends the json message.
  1155. </summary>
  1156. <param name="session">The session.</param>
  1157. <param name="name">The name.</param>
  1158. <param name="token">The token.</param>
  1159. <param name="content">The content.</param>
  1160. </member>
  1161. <member name="T:SuperWebSocket.SubProtocol.BasicSubCommandParser">
  1162. <summary>
  1163. Basic sub command parser
  1164. </summary>
  1165. </member>
  1166. <member name="M:SuperWebSocket.SubProtocol.BasicSubCommandParser.ParseRequestInfo(System.String)">
  1167. <summary>
  1168. Parses the request info.
  1169. </summary>
  1170. <param name="source">The source.</param>
  1171. <returns></returns>
  1172. </member>
  1173. <member name="T:SuperWebSocket.SubProtocol.BasicSubProtocol">
  1174. <summary>
  1175. Default basic sub protocol implementation
  1176. </summary>
  1177. </member>
  1178. <member name="T:SuperWebSocket.SubProtocol.BasicSubProtocol`1">
  1179. <summary>
  1180. Default basic sub protocol implementation
  1181. </summary>
  1182. </member>
  1183. <member name="T:SuperWebSocket.SubProtocol.SubProtocolBase`1">
  1184. <summary>
  1185. SubProtocol basis
  1186. </summary>
  1187. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  1188. </member>
  1189. <member name="T:SuperWebSocket.SubProtocol.ISubProtocol`1">
  1190. <summary>
  1191. SubProtocol interface
  1192. </summary>
  1193. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  1194. </member>
  1195. <member name="M:SuperWebSocket.SubProtocol.ISubProtocol`1.Initialize(SuperSocket.SocketBase.IAppServer,SuperWebSocket.Config.SubProtocolConfig,SuperSocket.SocketBase.Logging.ILog)">
  1196. <summary>
  1197. Initializes with the specified config.
  1198. </summary>
  1199. <param name="appServer">The app server.</param>
  1200. <param name="protocolConfig">The protocol config.</param>
  1201. <param name="logger">The logger.</param>
  1202. <returns></returns>
  1203. </member>
  1204. <member name="M:SuperWebSocket.SubProtocol.ISubProtocol`1.TryGetCommand(System.String,SuperWebSocket.SubProtocol.ISubCommand{`0}@)">
  1205. <summary>
  1206. Tries the get command.
  1207. </summary>
  1208. <param name="name">The name.</param>
  1209. <param name="command">The command.</param>
  1210. <returns></returns>
  1211. </member>
  1212. <member name="P:SuperWebSocket.SubProtocol.ISubProtocol`1.Name">
  1213. <summary>
  1214. Gets the name.
  1215. </summary>
  1216. </member>
  1217. <member name="P:SuperWebSocket.SubProtocol.ISubProtocol`1.SubRequestParser">
  1218. <summary>
  1219. Gets the sub request parser.
  1220. </summary>
  1221. </member>
  1222. <member name="M:SuperWebSocket.SubProtocol.SubProtocolBase`1.#ctor(System.String)">
  1223. <summary>
  1224. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.SubProtocolBase`1"/> class.
  1225. </summary>
  1226. <param name="name">The name.</param>
  1227. </member>
  1228. <member name="M:SuperWebSocket.SubProtocol.SubProtocolBase`1.Initialize(SuperSocket.SocketBase.IAppServer,SuperWebSocket.Config.SubProtocolConfig,SuperSocket.SocketBase.Logging.ILog)">
  1229. <summary>
  1230. Initializes with the specified config.
  1231. </summary>
  1232. <param name="appServer">The app server.</param>
  1233. <param name="protocolConfig">The protocol config.</param>
  1234. <param name="logger">The logger.</param>
  1235. <returns></returns>
  1236. </member>
  1237. <member name="M:SuperWebSocket.SubProtocol.SubProtocolBase`1.TryGetCommand(System.String,SuperWebSocket.SubProtocol.ISubCommand{`0}@)">
  1238. <summary>
  1239. Tries the get command.
  1240. </summary>
  1241. <param name="name">The name.</param>
  1242. <param name="command">The command.</param>
  1243. <returns></returns>
  1244. </member>
  1245. <member name="P:SuperWebSocket.SubProtocol.SubProtocolBase`1.Name">
  1246. <summary>
  1247. Gets the name.
  1248. </summary>
  1249. </member>
  1250. <member name="P:SuperWebSocket.SubProtocol.SubProtocolBase`1.SubRequestParser">
  1251. <summary>
  1252. Gets or sets the sub request parser.
  1253. </summary>
  1254. <value>
  1255. The sub request parser.
  1256. </value>
  1257. </member>
  1258. <member name="F:SuperWebSocket.SubProtocol.BasicSubProtocol`1.DefaultName">
  1259. <summary>
  1260. Default basic sub protocol name
  1261. </summary>
  1262. </member>
  1263. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol`1.#ctor">
  1264. <summary>
  1265. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol`1"/> class with the calling aseembly as command assembly
  1266. </summary>
  1267. </member>
  1268. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol`1.#ctor(System.String)">
  1269. <summary>
  1270. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol`1"/> class with the calling aseembly as command assembly
  1271. </summary>
  1272. <param name="name">The sub protocol name.</param>
  1273. </member>
  1274. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol`1.#ctor(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
  1275. <summary>
  1276. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol`1"/> class with command assemblies
  1277. </summary>
  1278. <param name="commandAssemblies">The command assemblies.</param>
  1279. </member>
  1280. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol`1.#ctor(System.Reflection.Assembly)">
  1281. <summary>
  1282. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol`1"/> class with single command assembly.
  1283. </summary>
  1284. <param name="commandAssembly">The command assembly.</param>
  1285. </member>
  1286. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol`1.#ctor(System.String,System.Reflection.Assembly)">
  1287. <summary>
  1288. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol`1"/> class with name and single command assembly.
  1289. </summary>
  1290. <param name="name">The sub protocol name.</param>
  1291. <param name="commandAssembly">The command assembly.</param>
  1292. </member>
  1293. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol`1.#ctor(System.String,System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
  1294. <summary>
  1295. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol`1"/> class with name and command assemblies.
  1296. </summary>
  1297. <param name="name">The sub protocol name.</param>
  1298. <param name="commandAssemblies">The command assemblies.</param>
  1299. </member>
  1300. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol`1.#ctor(System.String,System.Collections.Generic.IEnumerable{System.Reflection.Assembly},SuperSocket.SocketBase.Protocol.IRequestInfoParser{SuperWebSocket.SubProtocol.SubRequestInfo})">
  1301. <summary>
  1302. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol`1"/> class.
  1303. </summary>
  1304. <param name="name">The name.</param>
  1305. <param name="commandAssemblies">The command assemblies.</param>
  1306. <param name="requestInfoParser">The request info parser.</param>
  1307. </member>
  1308. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol`1.Initialize(SuperSocket.SocketBase.IAppServer,SuperWebSocket.Config.SubProtocolConfig,SuperSocket.SocketBase.Logging.ILog)">
  1309. <summary>
  1310. Initializes with the specified config.
  1311. </summary>
  1312. <param name="appServer">The app server.</param>
  1313. <param name="protocolConfig">The protocol config.</param>
  1314. <param name="logger">The logger.</param>
  1315. <returns></returns>
  1316. </member>
  1317. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol`1.TryGetCommand(System.String,SuperWebSocket.SubProtocol.ISubCommand{`0}@)">
  1318. <summary>
  1319. Tries get command from the sub protocol's command inventory.
  1320. </summary>
  1321. <param name="name">The name.</param>
  1322. <param name="command">The command.</param>
  1323. <returns></returns>
  1324. </member>
  1325. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol.#ctor">
  1326. <summary>
  1327. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol"/> class.
  1328. </summary>
  1329. </member>
  1330. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol.#ctor(System.String)">
  1331. <summary>
  1332. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol"/> class.
  1333. </summary>
  1334. <param name="name">The sub protocol name.</param>
  1335. </member>
  1336. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol.#ctor(System.Reflection.Assembly)">
  1337. <summary>
  1338. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol"/> class.
  1339. </summary>
  1340. <param name="commandAssembly">The command assembly.</param>
  1341. </member>
  1342. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol.#ctor(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
  1343. <summary>
  1344. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol"/> class.
  1345. </summary>
  1346. <param name="commandAssemblies">The command assemblies.</param>
  1347. </member>
  1348. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol.#ctor(System.String,System.Reflection.Assembly)">
  1349. <summary>
  1350. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol"/> class.
  1351. </summary>
  1352. <param name="name">The sub protocol name.</param>
  1353. <param name="commandAssembly">The command assembly.</param>
  1354. </member>
  1355. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol.#ctor(System.String,System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
  1356. <summary>
  1357. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol"/> class.
  1358. </summary>
  1359. <param name="name">The sub protocol name.</param>
  1360. <param name="commandAssemblies">The command assemblies.</param>
  1361. </member>
  1362. <member name="M:SuperWebSocket.SubProtocol.BasicSubProtocol.#ctor(System.String,System.Collections.Generic.IEnumerable{System.Reflection.Assembly},SuperSocket.SocketBase.Protocol.IRequestInfoParser{SuperWebSocket.SubProtocol.SubRequestInfo})">
  1363. <summary>
  1364. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.BasicSubProtocol"/> class.
  1365. </summary>
  1366. <param name="name">The name.</param>
  1367. <param name="commandAssemblies">The command assemblies.</param>
  1368. <param name="requestInfoParser">The request info parser.</param>
  1369. </member>
  1370. <member name="T:SuperWebSocket.SubProtocol.ISubRequestInfo">
  1371. <summary>
  1372. The basic interface of SubRequestInfo
  1373. </summary>
  1374. </member>
  1375. <member name="P:SuperWebSocket.SubProtocol.ISubRequestInfo.Token">
  1376. <summary>
  1377. Gets the token.
  1378. </summary>
  1379. <value>
  1380. The token.
  1381. </value>
  1382. </member>
  1383. <member name="T:SuperWebSocket.SubProtocol.JsonSubCommand`1">
  1384. <summary>
  1385. JsonSubCommand
  1386. </summary>
  1387. <typeparam name="TJsonCommandInfo">The type of the json command info.</typeparam>
  1388. </member>
  1389. <member name="T:SuperWebSocket.SubProtocol.JsonSubCommand`2">
  1390. <summary>
  1391. JsonSubCommand
  1392. </summary>
  1393. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  1394. <typeparam name="TJsonCommandInfo">The type of the json command info.</typeparam>
  1395. </member>
  1396. <member name="M:SuperWebSocket.SubProtocol.JsonSubCommand`2.GetJsonMessage(`0,System.Object)">
  1397. <summary>
  1398. Gets the json message.
  1399. </summary>
  1400. <param name="session">The session.</param>
  1401. <param name="content">The content.</param>
  1402. <returns></returns>
  1403. </member>
  1404. <member name="M:SuperWebSocket.SubProtocol.JsonSubCommand`2.GetJsonMessage(`0,System.String,System.Object)">
  1405. <summary>
  1406. Gets the json message.
  1407. </summary>
  1408. <param name="session">The session.</param>
  1409. <param name="name">The name.</param>
  1410. <param name="content">The content.</param>
  1411. <returns></returns>
  1412. </member>
  1413. <member name="M:SuperWebSocket.SubProtocol.JsonSubCommand`2.SendJsonMessage(`0,System.Object)">
  1414. <summary>
  1415. Sends the json message.
  1416. </summary>
  1417. <param name="session">The session.</param>
  1418. <param name="content">The content.</param>
  1419. </member>
  1420. <member name="M:SuperWebSocket.SubProtocol.JsonSubCommand`2.SendJsonMessage(`0,System.String,System.Object)">
  1421. <summary>
  1422. Sends the json message.
  1423. </summary>
  1424. <param name="session">The session.</param>
  1425. <param name="name">The name.</param>
  1426. <param name="content">The content.</param>
  1427. </member>
  1428. <member name="T:SuperWebSocket.SubProtocol.SubCommandBase">
  1429. <summary>
  1430. SubCommand base
  1431. </summary>
  1432. </member>
  1433. <member name="T:SuperWebSocket.SubProtocol.SubCommandFilterAttribute">
  1434. <summary>
  1435. SubCommandFilter Attribute
  1436. </summary>
  1437. </member>
  1438. <member name="P:SuperWebSocket.SubProtocol.SubCommandFilterAttribute.SubProtocol">
  1439. <summary>
  1440. Gets or sets the sub protocol.
  1441. </summary>
  1442. <value>
  1443. The sub protocol.
  1444. </value>
  1445. </member>
  1446. <member name="T:SuperWebSocket.SubProtocol.SubRequestInfo">
  1447. <summary>
  1448. SubProtocol RequestInfo type
  1449. </summary>
  1450. </member>
  1451. <member name="M:SuperWebSocket.SubProtocol.SubRequestInfo.#ctor(System.String,System.String,System.String)">
  1452. <summary>
  1453. Initializes a new instance of the <see cref="T:SuperWebSocket.SubProtocol.SubRequestInfo"/> class.
  1454. </summary>
  1455. <param name="key">The key.</param>
  1456. <param name="token">The token.</param>
  1457. <param name="data">The data.</param>
  1458. </member>
  1459. <member name="P:SuperWebSocket.SubProtocol.SubRequestInfo.Token">
  1460. <summary>
  1461. Gets the token of this request, used for callback
  1462. </summary>
  1463. </member>
  1464. <member name="T:SuperWebSocket.TextEncodingBinaryDataConverter">
  1465. <summary>
  1466. Text encoding binary data converter
  1467. </summary>
  1468. </member>
  1469. <member name="M:SuperWebSocket.TextEncodingBinaryDataConverter.#ctor(System.Text.Encoding)">
  1470. <summary>
  1471. Initializes a new instance of the <see cref="T:SuperWebSocket.TextEncodingBinaryDataConverter"/> class.
  1472. </summary>
  1473. <param name="encoding">The encoding.</param>
  1474. </member>
  1475. <member name="M:SuperWebSocket.TextEncodingBinaryDataConverter.ToString(System.Byte[],System.Int32,System.Int32)">
  1476. <summary>
  1477. Returns a <see cref="T:System.String"/> that represents this instance.
  1478. </summary>
  1479. <param name="data">The data.</param>
  1480. <param name="offset">The offset.</param>
  1481. <param name="length">The length.</param>
  1482. <returns>
  1483. A <see cref="T:System.String"/> that represents this instance.
  1484. </returns>
  1485. </member>
  1486. <member name="P:SuperWebSocket.TextEncodingBinaryDataConverter.Encoding">
  1487. <summary>
  1488. Gets the encoding.
  1489. </summary>
  1490. <value>
  1491. The encoding.
  1492. </value>
  1493. </member>
  1494. <member name="T:SuperWebSocket.WebSocketProtocol">
  1495. <summary>
  1496. WebSocket protocol
  1497. </summary>
  1498. </member>
  1499. <member name="M:SuperWebSocket.WebSocketProtocol.#ctor">
  1500. <summary>
  1501. Initializes a new instance of the <see cref="T:SuperWebSocket.WebSocketProtocol"/> class.
  1502. </summary>
  1503. </member>
  1504. <member name="M:SuperWebSocket.WebSocketProtocol.CreateFilter(SuperSocket.SocketBase.IAppServer,SuperSocket.SocketBase.IAppSession,System.Net.IPEndPoint)">
  1505. <summary>
  1506. Creates the filter.
  1507. </summary>
  1508. <param name="appServer">The app server.</param>
  1509. <param name="appSession">The app session.</param>
  1510. <param name="remoteEndPoint">The remote end point.</param>
  1511. <returns></returns>
  1512. </member>
  1513. <member name="T:SuperWebSocket.IWebSocketServer">
  1514. <summary>
  1515. WebSocket server interface
  1516. </summary>
  1517. </member>
  1518. <member name="M:SuperWebSocket.IWebSocketServer.ValidateHandshake(SuperWebSocket.IWebSocketSession,System.String)">
  1519. <summary>
  1520. Validates the handshake request.
  1521. </summary>
  1522. <param name="session">The session.</param>
  1523. <param name="origin">The origin.</param>
  1524. <returns>the validation result</returns>
  1525. </member>
  1526. <member name="P:SuperWebSocket.IWebSocketServer.WebSocketProtocolProcessor">
  1527. <summary>
  1528. Gets the web socket protocol processor.
  1529. </summary>
  1530. </member>
  1531. <member name="T:SuperWebSocket.WebSocketServer">
  1532. <summary>
  1533. WebSocket AppServer
  1534. </summary>
  1535. </member>
  1536. <member name="T:SuperWebSocket.WebSocketServer`1">
  1537. <summary>
  1538. WebSocket AppServer
  1539. </summary>
  1540. <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
  1541. </member>
  1542. <member name="M:SuperWebSocket.WebSocketServer`1.#ctor(System.Collections.Generic.IEnumerable{SuperWebSocket.SubProtocol.ISubProtocol{`0}})">
  1543. <summary>
  1544. Initializes a new instance of the <see cref="T:SuperWebSocket.WebSocketServer`1"/> class.
  1545. </summary>
  1546. <param name="subProtocols">The sub protocols.</param>
  1547. </member>
  1548. <member name="M:SuperWebSocket.WebSocketServer`1.#ctor(SuperWebSocket.SubProtocol.ISubProtocol{`0})">
  1549. <summary>
  1550. Initializes a new instance of the <see cref="T:SuperWebSocket.WebSocketServer`1"/> class.
  1551. </summary>
  1552. <param name="subProtocol">The sub protocol.</param>
  1553. </member>
  1554. <member name="M:SuperWebSocket.WebSocketServer`1.#ctor">
  1555. <summary>
  1556. Initializes a new instance of the <see cref="T:SuperWebSocket.WebSocketServer`1"/> class.
  1557. </summary>
  1558. </member>
  1559. <member name="F:SuperWebSocket.WebSocketServer`1.m_OpenHandshakeTimeOut">
  1560. <summary>
  1561. The openning handshake timeout, in seconds
  1562. </summary>
  1563. </member>
  1564. <member name="F:SuperWebSocket.WebSocketServer`1.m_CloseHandshakeTimeOut">
  1565. <summary>
  1566. The closing handshake timeout, in seconds
  1567. </summary>
  1568. </member>
  1569. <member name="F:SuperWebSocket.WebSocketServer`1.m_HandshakePendingQueueCheckingInterval">
  1570. <summary>
  1571. The interval of checking handshake pending queue, in seconds
  1572. </summary>
  1573. </member>
  1574. <member name="M:SuperWebSocket.WebSocketServer`1.GetSubProtocol(System.String)">
  1575. <summary>
  1576. Gets the sub protocol by sub protocol name.
  1577. </summary>
  1578. <param name="name">The name.</param>
  1579. <returns></returns>
  1580. </member>
  1581. <member name="M:SuperWebSocket.WebSocketServer`1.ValidateHandshake(`0,System.String)">
  1582. <summary>
  1583. Validates the handshake request.
  1584. </summary>
  1585. <param name="session">The session.</param>
  1586. <param name="origin">The origin in the handshake request.</param>
  1587. <returns></returns>
  1588. </member>
  1589. <member name="M:SuperWebSocket.WebSocketServer`1.Setup(SuperSocket.SocketBase.Config.IRootConfig,SuperSocket.SocketBase.Config.IServerConfig)">
  1590. <summary>
  1591. Setups with the specified root config.
  1592. </summary>
  1593. <param name="rootConfig">The root config.</param>
  1594. <param name="config">The config.</param>
  1595. <returns></returns>
  1596. </member>
  1597. <member name="M:SuperWebSocket.WebSocketServer`1.OnStarted">
  1598. <summary>
  1599. Called when [started].
  1600. </summary>
  1601. </member>
  1602. <member name="M:SuperWebSocket.WebSocketServer`1.OnNewSessionConnected(`0)">
  1603. <summary>
  1604. Called when [new session connected].
  1605. </summary>
  1606. <param name="session">The session.</param>
  1607. </member>
  1608. <member name="M:SuperWebSocket.WebSocketServer`1.SetupCommands(System.Collections.Generic.Dictionary{System.String,SuperSocket.SocketBase.Command.ICommand{`0,SuperWebSocket.Protocol.IWebSocketFragment}})">
  1609. <summary>
  1610. Setups the commands.
  1611. </summary>
  1612. <param name="discoveredCommands">The discovered commands.</param>
  1613. <returns></returns>
  1614. </member>
  1615. <member name="M:SuperWebSocket.WebSocketServer`1.ExecuteCommand(`0,SuperWebSocket.Protocol.IWebSocketFragment)">
  1616. <summary>
  1617. Executes the command.
  1618. </summary>
  1619. <param name="session">The session.</param>
  1620. <param name="requestInfo">The request info.</param>
  1621. </member>
  1622. <member name="M:SuperWebSocket.WebSocketServer`1.JsonSerialize(System.Object)">
  1623. <summary>
  1624. Serialize the target object by JSON
  1625. </summary>
  1626. <param name="target">The target.</param>
  1627. <returns></returns>
  1628. </member>
  1629. <member name="M:SuperWebSocket.WebSocketServer`1.JsonDeserialize(System.String,System.Type)">
  1630. <summary>
  1631. Deserialize the JSON string to target type object.
  1632. </summary>
  1633. <param name="json">The json.</param>
  1634. <param name="type">The type.</param>
  1635. <returns></returns>
  1636. </member>
  1637. <member name="P:SuperWebSocket.WebSocketServer`1.BinaryDataConverter">
  1638. <summary>
  1639. Gets or sets the binary data converter.
  1640. </summary>
  1641. <value>
  1642. The binary data converter.
  1643. </value>
  1644. </member>
  1645. <member name="P:SuperWebSocket.WebSocketServer`1.ReceiveFilterFactory">
  1646. <summary>
  1647. Gets the request filter factory.
  1648. </summary>
  1649. </member>
  1650. <member name="E:SuperWebSocket.WebSocketServer`1.NewRequestReceived">
  1651. <summary>
  1652. Occurs when [new request received].
  1653. </summary>
  1654. <exception cref="T:System.NotSupportedException"></exception>
  1655. </member>
  1656. <member name="E:SuperWebSocket.WebSocketServer`1.NewMessageReceived">
  1657. <summary>
  1658. Occurs when [new message received].
  1659. </summary>
  1660. </member>
  1661. <member name="E:SuperWebSocket.WebSocketServer`1.NewDataReceived">
  1662. <summary>
  1663. Occurs when [new data received].
  1664. </summary>
  1665. </member>
  1666. <member name="M:SuperWebSocket.WebSocketServer.#ctor(System.Collections.Generic.IEnumerable{SuperWebSocket.SubProtocol.ISubProtocol{SuperWebSocket.WebSocketSession}})">
  1667. <summary>
  1668. Initializes a new instance of the <see cref="T:SuperWebSocket.WebSocketServer"/> class.
  1669. </summary>
  1670. <param name="subProtocols">The sub protocols.</param>
  1671. </member>
  1672. <member name="M:SuperWebSocket.WebSocketServer.#ctor(SuperWebSocket.SubProtocol.ISubProtocol{SuperWebSocket.WebSocketSession})">
  1673. <summary>
  1674. Initializes a new instance of the <see cref="T:SuperWebSocket.WebSocketServer"/> class.
  1675. </summary>
  1676. <param name="subProtocol">The sub protocol.</param>
  1677. </member>
  1678. <member name="M:SuperWebSocket.WebSocketServer.#ctor">
  1679. <summary>
  1680. Initializes a new instance of the <see cref="T:SuperWebSocket.WebSocketServer"/> class.
  1681. </summary>
  1682. </member>
  1683. <member name="T:SuperWebSocket.WebSocketSession">
  1684. <summary>
  1685. WebSocket AppSession
  1686. </summary>
  1687. </member>
  1688. <member name="P:SuperWebSocket.WebSocketSession.AppServer">
  1689. <summary>
  1690. Gets the app server.
  1691. </summary>
  1692. </member>
  1693. </members>
  1694. </doc>