PageRenderTime 62ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 1ms

/src/Microsoft.AspNet.SignalR.Client/Resources.Designer.cs

https://gitlab.com/scgitlab/SignalR
C# | 275 lines | 152 code | 31 blank | 92 comment | 1 complexity | df2ee8c8207f302e81d48e3890298f8a MD5 | raw file
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.34209
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Microsoft.AspNet.SignalR.Client {
  11. using System;
  12. using System.Reflection;
  13. /// <summary>
  14. /// A strongly-typed resource class, for looking up localized strings, etc.
  15. /// </summary>
  16. // This class was auto-generated by the StronglyTypedResourceBuilder
  17. // class via a tool like ResGen or Visual Studio.
  18. // To add or remove a member, edit your .ResX file then rerun ResGen
  19. // with the /str option, or rebuild your VS project.
  20. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
  21. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  22. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  23. internal class Resources {
  24. private static global::System.Resources.ResourceManager resourceMan;
  25. private static global::System.Globalization.CultureInfo resourceCulture;
  26. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  27. internal Resources() {
  28. }
  29. /// <summary>
  30. /// Returns the cached ResourceManager instance used by this class.
  31. /// </summary>
  32. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  33. internal static global::System.Resources.ResourceManager ResourceManager {
  34. get {
  35. if (object.ReferenceEquals(resourceMan, null)) {
  36. #if NETFX_CORE
  37. var assembly = typeof(Resources).GetTypeInfo().Assembly;
  38. #else
  39. var assembly = typeof(Resources).Assembly;
  40. #endif
  41. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.AspNet.SignalR.Client.Resources", assembly); resourceMan = temp;
  42. }
  43. return resourceMan;
  44. }
  45. }
  46. /// <summary>
  47. /// Overrides the current thread's CurrentUICulture property for all
  48. /// resource lookups using this strongly typed resource class.
  49. /// </summary>
  50. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  51. internal static global::System.Globalization.CultureInfo Culture {
  52. get {
  53. return resourceCulture;
  54. }
  55. set {
  56. resourceCulture = value;
  57. }
  58. }
  59. /// <summary>
  60. /// Looks up a localized string similar to Client Certificates cannot be added after the connection has started..
  61. /// </summary>
  62. internal static string Error_CertsCanOnlyBeAddedWhenDisconnected {
  63. get {
  64. return ResourceManager.GetString("Error_CertsCanOnlyBeAddedWhenDisconnected", resourceCulture);
  65. }
  66. }
  67. /// <summary>
  68. /// 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}.
  69. /// </summary>
  70. internal static string Error_ClientCallbackArgumentTypeMismatch {
  71. get {
  72. return ResourceManager.GetString("Error_ClientCallbackArgumentTypeMismatch", resourceCulture);
  73. }
  74. }
  75. /// <summary>
  76. /// Looks up a localized string similar to A client callback for event {0} with {1} argument(s) could not be found.
  77. /// </summary>
  78. internal static string Error_ClientCallbackInvalidNumberOfArguments {
  79. get {
  80. return ResourceManager.GetString("Error_ClientCallbackInvalidNumberOfArguments", resourceCulture);
  81. }
  82. }
  83. /// <summary>
  84. /// Looks up a localized string similar to The connection was stopped before it could be started..
  85. /// </summary>
  86. internal static string Error_ConnectionCancelled {
  87. get {
  88. return ResourceManager.GetString("Error_ConnectionCancelled", resourceCulture);
  89. }
  90. }
  91. /// <summary>
  92. /// Looks up a localized string similar to The connection has not been established..
  93. /// </summary>
  94. internal static string Error_ConnectionHasNotBeenEstablished {
  95. get {
  96. return ResourceManager.GetString("Error_ConnectionHasNotBeenEstablished", resourceCulture);
  97. }
  98. }
  99. /// <summary>
  100. /// 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..
  101. /// </summary>
  102. internal static string Error_DataCannotBeSentConnectionDisconnected {
  103. get {
  104. return ResourceManager.GetString("Error_DataCannotBeSentConnectionDisconnected", resourceCulture);
  105. }
  106. }
  107. /// <summary>
  108. /// Looks up a localized string similar to Data cannot be sent because the WebSocket connection is reconnecting..
  109. /// </summary>
  110. internal static string Error_DataCannotBeSentDuringWebSocketReconnect {
  111. get {
  112. return ResourceManager.GetString("Error_DataCannotBeSentDuringWebSocketReconnect", resourceCulture);
  113. }
  114. }
  115. /// <summary>
  116. /// 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}..
  117. /// </summary>
  118. internal static string Error_IncompatibleProtocolVersion {
  119. get {
  120. return ResourceManager.GetString("Error_IncompatibleProtocolVersion", resourceCulture);
  121. }
  122. }
  123. /// <summary>
  124. /// 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;..
  125. /// </summary>
  126. internal static string Error_InvalidUriScheme {
  127. get {
  128. return ResourceManager.GetString("Error_InvalidUriScheme", resourceCulture);
  129. }
  130. }
  131. /// <summary>
  132. /// 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..
  133. /// </summary>
  134. internal static string Error_PossibleDeadlockDetected {
  135. get {
  136. return ResourceManager.GetString("Error_PossibleDeadlockDetected", resourceCulture);
  137. }
  138. }
  139. /// <summary>
  140. /// Looks up a localized string similar to The ProcessResponse method cannot be called before the transport is started..
  141. /// </summary>
  142. internal static string Error_ProcessResponseBeforeStart {
  143. get {
  144. return ResourceManager.GetString("Error_ProcessResponseBeforeStart", resourceCulture);
  145. }
  146. }
  147. /// <summary>
  148. /// Looks up a localized string similar to A HubProxy cannot be added after the connection has been started..
  149. /// </summary>
  150. internal static string Error_ProxiesCannotBeAddedConnectionStarted {
  151. get {
  152. return ResourceManager.GetString("Error_ProxiesCannotBeAddedConnectionStarted", resourceCulture);
  153. }
  154. }
  155. /// <summary>
  156. /// Looks up a localized string similar to Couldn&apos;t reconnect within the configured timeout of {0}, disconnecting..
  157. /// </summary>
  158. internal static string Error_ReconnectTimeout {
  159. get {
  160. return ResourceManager.GetString("Error_ReconnectTimeout", resourceCulture);
  161. }
  162. }
  163. /// <summary>
  164. /// 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..
  165. /// </summary>
  166. internal static string Error_ReconnectWindowTimeout {
  167. get {
  168. return ResourceManager.GetString("Error_ReconnectWindowTimeout", resourceCulture);
  169. }
  170. }
  171. /// <summary>
  172. /// Looks up a localized string similar to Server negotiation failed..
  173. /// </summary>
  174. internal static string Error_ServerNegotiationFailed {
  175. get {
  176. return ResourceManager.GetString("Error_ServerNegotiationFailed", resourceCulture);
  177. }
  178. }
  179. /// <summary>
  180. /// Looks up a localized string similar to Error during start request. Stopping the connection..
  181. /// </summary>
  182. internal static string Error_StartFailed {
  183. get {
  184. return ResourceManager.GetString("Error_StartFailed", resourceCulture);
  185. }
  186. }
  187. /// <summary>
  188. /// Looks up a localized string similar to Request failed - task cancelled..
  189. /// </summary>
  190. internal static string Error_TaskCancelledException {
  191. get {
  192. return ResourceManager.GetString("Error_TaskCancelledException", resourceCulture);
  193. }
  194. }
  195. /// <summary>
  196. /// 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..
  197. /// </summary>
  198. internal static string Error_TransportCannotBeReused {
  199. get {
  200. return ResourceManager.GetString("Error_TransportCannotBeReused", resourceCulture);
  201. }
  202. }
  203. /// <summary>
  204. /// Looks up a localized string similar to Transport failed trying to connect..
  205. /// </summary>
  206. internal static string Error_TransportFailedToConnect {
  207. get {
  208. return ResourceManager.GetString("Error_TransportFailedToConnect", resourceCulture);
  209. }
  210. }
  211. /// <summary>
  212. /// Looks up a localized string similar to Transport timed out trying to connect.
  213. /// </summary>
  214. internal static string Error_TransportTimedOutTryingToConnect {
  215. get {
  216. return ResourceManager.GetString("Error_TransportTimedOutTryingToConnect", resourceCulture);
  217. }
  218. }
  219. /// <summary>
  220. /// Looks up a localized string similar to Url cannot contain query string directly. Pass query string values in using available overload..
  221. /// </summary>
  222. internal static string Error_UrlCantContainQueryStringDirectly {
  223. get {
  224. return ResourceManager.GetString("Error_UrlCantContainQueryStringDirectly", resourceCulture);
  225. }
  226. }
  227. /// <summary>
  228. /// Looks up a localized string similar to Connection was disconnected before invocation result was received..
  229. /// </summary>
  230. internal static string Message_ConnectionClosed {
  231. get {
  232. return ResourceManager.GetString("Message_ConnectionClosed", resourceCulture);
  233. }
  234. }
  235. /// <summary>
  236. /// Looks up a localized string similar to Connection started reconnecting before invocation result was received..
  237. /// </summary>
  238. internal static string Message_Reconnecting {
  239. get {
  240. return ResourceManager.GetString("Message_Reconnecting", resourceCulture);
  241. }
  242. }
  243. }
  244. }