├── .editorconfig ├── .github └── workflows │ ├── dotnet.yml │ └── publish-nuget.yml ├── .gitignore ├── Directory.Build.props ├── README.md ├── appveyor.yml ├── sample ├── sample-client │ ├── .gitignore │ ├── .vscode │ │ ├── pnpify │ │ │ └── typescript │ │ │ │ ├── lib │ │ │ │ ├── tsc.js │ │ │ │ └── tsserver.js │ │ │ │ └── package.json │ │ └── settings.json │ ├── README.md │ ├── images.d.ts │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Messages │ │ │ ├── Calculate.ts │ │ │ ├── CalculateResponse.ts │ │ │ ├── EventBroadcaster.ts │ │ │ ├── GetVersion.ts │ │ │ └── GetVersionResponse.ts │ │ ├── ServiceExecutor.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── serviceWorker.ts │ │ └── setupTests.ts │ ├── tsconfig.json │ └── yarn.lock ├── sample-core-server │ ├── JsonServices.Sample.CoreServer.csproj │ ├── JsonServicesConfig.cs │ ├── JsonServicesConnectionManager.cs │ ├── JsonServicesMiddleware.cs │ ├── JsonServicesMiddlewareExtensions.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── wwwroot │ │ └── index.html ├── sample-server │ ├── JsonServices.Sample.Server.csproj │ └── Program.cs └── sample.bat ├── src ├── .vscode │ └── launch.json ├── JsonServices.Auth.SecureRemotePassword.Tests │ ├── JsonClientSrpTests.cs │ ├── JsonServerSrpTests.cs │ ├── JsonServices.Auth.SecureRemotePassword.Tests.csproj │ ├── SrpAuthProviderTests.cs │ ├── SrpProtocolConstantsTests.cs │ ├── SrpStressTests.cs │ └── StubAccountRepository.cs ├── JsonServices.Auth.SecureRemotePassword │ ├── ISrpAccount.cs │ ├── ISrpAccountRepository.cs │ ├── JsonServices.Auth.SecureRemotePassword.csproj │ ├── Properties │ │ └── InternalsVisibleTo.cs │ ├── SrpAuthProvider.cs │ ├── SrpCredentials.cs │ └── SrpProtocolConstants.cs ├── JsonServices.Core.Tests │ ├── Auth │ │ ├── JsonIdentityTests.cs │ │ ├── StubAuthProvider.cs │ │ └── StubAuthProviderTests.cs │ ├── Events │ │ ├── ClientSubscriptionManagerTests.cs │ │ ├── EventArgWithIntProperty.cs │ │ ├── EventArgWithLongProperty.cs │ │ ├── EventArgWithPropertyOfT.cs │ │ ├── EventArgWithStringProperty.cs │ │ └── EventFilterTests.cs │ ├── Exceptions │ │ ├── ExceptionTests.cs │ │ ├── ExceptionTranslatorTests.cs │ │ └── StubExceptionTranslator.cs │ ├── JsonClientTests.cs │ ├── JsonServerTests.cs │ ├── JsonServices.Core.Tests.csproj │ ├── Messages │ │ ├── Calculate.cs │ │ ├── CalculateResponse.cs │ │ ├── CalculateService.cs │ │ ├── DelayRequest.cs │ │ ├── DelayService.cs │ │ ├── EventBroadcaster.cs │ │ ├── EventBroadcasterService.cs │ │ ├── FilteredEventArgs.cs │ │ ├── Generic │ │ │ ├── GenericMessageTypeProvider.cs │ │ │ ├── GenericMessageTypeProviderTests.cs │ │ │ ├── GenericRequest.cs │ │ │ ├── GenericResponse.cs │ │ │ ├── GenericServiceExecutor.cs │ │ │ └── IGenericRequest.cs │ │ ├── GetVersion.cs │ │ ├── GetVersionResponse.cs │ │ ├── GetVersionService.cs │ │ ├── MessageTests.cs │ │ └── MyCoolEventArgs.cs │ ├── Properties │ │ └── InternalsVisibleTo.cs │ ├── Serialization │ │ └── BrokenSerializer.cs │ ├── Services │ │ ├── BrokenMessageTypeProvider.cs │ │ ├── RequestContextTests.cs │ │ ├── StubExecutor.cs │ │ ├── StubExecutorTests.cs │ │ ├── StubMessageNameProvider.cs │ │ ├── StubMessageTypeProvider.cs │ │ └── StubMessageTypeProviderTests.cs │ ├── StressTests.cs │ ├── TestFixtureBase.cs │ ├── TestFixtureBaseTests.cs │ └── Transport │ │ ├── StubClient.cs │ │ └── StubServer.cs ├── JsonServices.Core │ ├── Auth │ │ ├── AuthRequest.cs │ │ ├── AuthResponse.cs │ │ ├── AuthService.cs │ │ ├── CredentialsBase.cs │ │ ├── IAuthProvider.cs │ │ ├── ICredentials.cs │ │ ├── JsonIdentity.cs │ │ └── NullAuthProvider.cs │ ├── Events │ │ ├── ClientSubscription.cs │ │ ├── ClientSubscriptionManager.cs │ │ ├── EventFilter.cs │ │ ├── IClientSubscription.cs │ │ ├── ServerSubscription.cs │ │ ├── ServerSubscriptionManager.cs │ │ ├── SubscriptionMessage.cs │ │ └── SubscriptionService.cs │ ├── Exceptions │ │ ├── AuthFailedException.cs │ │ ├── AuthRequiredException.cs │ │ ├── ClientDisconnectedException.cs │ │ ├── ExceptionTranslator.cs │ │ ├── IExceptionTranslator.cs │ │ ├── InternalErrorException.cs │ │ ├── InvalidRequestException.cs │ │ ├── JsonServicesException.cs │ │ ├── MethodNotFoundException.cs │ │ └── ParseErrorException.cs │ ├── IReturn.cs │ ├── IReturnVoid.cs │ ├── JsonClient.cs │ ├── JsonServer.cs │ ├── JsonServices.Core.csproj │ ├── Messages │ │ ├── Error.cs │ │ ├── ICustomName.cs │ │ ├── IMessage.cs │ │ ├── RequestMessage.cs │ │ ├── ResponseErrorMessage.cs │ │ ├── ResponseMessage.cs │ │ └── ResponseResultMessage.cs │ ├── Properties │ │ └── InternalsVisibleTo.cs │ ├── Serialization │ │ └── ISerializer.cs │ ├── Services │ │ ├── IMessageNameProvider.cs │ │ ├── IMessageTypeProvider.cs │ │ ├── IMessageTypeProviderExtensions.cs │ │ ├── IServiceExecutor.cs │ │ ├── MessageTypeProvider.cs │ │ ├── RequestContext.cs │ │ ├── ServiceExecutor.cs │ │ ├── VersionRequest.cs │ │ ├── VersionResponse.cs │ │ └── VersionService.cs │ ├── Sessions │ │ ├── ISessionManager.cs │ │ ├── LogoutMessage.cs │ │ ├── LogoutService.cs │ │ ├── Session.cs │ │ └── SessionManagerBase.cs │ └── Transport │ │ ├── IClient.cs │ │ ├── IConnection.cs │ │ ├── IServer.cs │ │ └── MessageEventArgs.cs ├── JsonServices.Serialization.Newtonsoft │ ├── Internal │ │ ├── GenericMessage.cs │ │ ├── IRequestMessage.cs │ │ ├── IResponseMessage.cs │ │ ├── RequestMsg.cs │ │ └── ResponseMsg.cs │ ├── JsonServices.Serialization.Newtonsoft.csproj │ └── Serializer.cs ├── JsonServices.Serialization.ServiceStack │ ├── Internal │ │ ├── GenericMessage.cs │ │ ├── IRequestMessage.cs │ │ ├── IResponseMessage.cs │ │ ├── RequestMsg.cs │ │ └── ResponseMsg.cs │ ├── JsonServices.Serialization.ServiceStack.csproj │ └── Serializer.cs ├── JsonServices.Serialization.ServiceStack4 │ └── JsonServices.Serialization.ServiceStack4.csproj ├── JsonServices.Serialization.SystemTextJson │ ├── AnonymousConverterFactory.cs │ ├── CultureInfoConverter.cs │ ├── Internal │ │ ├── GenericError.cs │ │ ├── GenericMessage.cs │ │ ├── IRequestMessage.cs │ │ ├── IResponseMessage.cs │ │ ├── RequestMsg.cs │ │ └── ResponseMsg.cs │ ├── JsonServices.Serialization.SystemTextJson.csproj │ ├── ObjectConverter.cs │ ├── Serializer.cs │ └── TupleConverterFactory.cs ├── JsonServices.Serialization.Tests │ ├── JsonServices.Serialization.Tests.csproj │ ├── SerializableTests.cs │ ├── SerializerTestsBase.cs │ ├── SerializerTestsNewtonsoft.cs │ ├── SerializerTestsServicestack.cs │ └── SerializerTestsSystemTextJson.cs ├── JsonServices.Transport.Fleck.Tests │ ├── FleckClientTests.cs │ ├── FleckServerTests.cs │ ├── FleckStressTest.cs │ └── JsonServices.Transport.Fleck.Tests.csproj ├── JsonServices.Transport.Fleck │ ├── FleckClient.cs │ ├── FleckServer.cs │ ├── FleckSession.cs │ └── JsonServices.Transport.Fleck.csproj ├── JsonServices.Transport.NetMQ.Tests │ ├── JsonServices.Transport.NetMQ.Tests.csproj │ ├── NetMQClientTests.cs │ ├── NetMQServerTests.cs │ └── NetMQStressTests.cs ├── JsonServices.Transport.NetMQ │ ├── JsonServices.Transport.NetMQ.csproj │ ├── NetMQClient.cs │ ├── NetMQServer.cs │ └── NetMQSession.cs ├── JsonServices.Transport.WebSocketSharp.Tests │ ├── JsonServices.Transport.WebSocketSharp.Tests.csproj │ ├── WebSocketClientTests.cs │ ├── WebSocketServerTests.cs │ └── WebSocketStressTests.cs ├── JsonServices.Transport.WebSocketSharp │ ├── JsonServices.Transport.WebSocketSharp.csproj │ ├── WebSocketClient.cs │ ├── WebSocketServer.cs │ └── WebSocketSession.cs ├── JsonServices.ruleset ├── JsonServices.sln ├── nunit37.bat ├── nunit39.bat └── test.bat └── version.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/publish-nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/.github/workflows/publish-nuget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/appveyor.yml -------------------------------------------------------------------------------- /sample/sample-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/.gitignore -------------------------------------------------------------------------------- /sample/sample-client/.vscode/pnpify/typescript/lib/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/.vscode/pnpify/typescript/lib/tsc.js -------------------------------------------------------------------------------- /sample/sample-client/.vscode/pnpify/typescript/lib/tsserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/.vscode/pnpify/typescript/lib/tsserver.js -------------------------------------------------------------------------------- /sample/sample-client/.vscode/pnpify/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/.vscode/pnpify/typescript/package.json -------------------------------------------------------------------------------- /sample/sample-client/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/.vscode/settings.json -------------------------------------------------------------------------------- /sample/sample-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/README.md -------------------------------------------------------------------------------- /sample/sample-client/images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/images.d.ts -------------------------------------------------------------------------------- /sample/sample-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/package.json -------------------------------------------------------------------------------- /sample/sample-client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/public/favicon.ico -------------------------------------------------------------------------------- /sample/sample-client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/public/index.html -------------------------------------------------------------------------------- /sample/sample-client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/public/logo192.png -------------------------------------------------------------------------------- /sample/sample-client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/public/logo512.png -------------------------------------------------------------------------------- /sample/sample-client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/public/manifest.json -------------------------------------------------------------------------------- /sample/sample-client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/public/robots.txt -------------------------------------------------------------------------------- /sample/sample-client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/App.css -------------------------------------------------------------------------------- /sample/sample-client/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/App.test.tsx -------------------------------------------------------------------------------- /sample/sample-client/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/App.tsx -------------------------------------------------------------------------------- /sample/sample-client/src/Messages/Calculate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/Messages/Calculate.ts -------------------------------------------------------------------------------- /sample/sample-client/src/Messages/CalculateResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/Messages/CalculateResponse.ts -------------------------------------------------------------------------------- /sample/sample-client/src/Messages/EventBroadcaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/Messages/EventBroadcaster.ts -------------------------------------------------------------------------------- /sample/sample-client/src/Messages/GetVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/Messages/GetVersion.ts -------------------------------------------------------------------------------- /sample/sample-client/src/Messages/GetVersionResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/Messages/GetVersionResponse.ts -------------------------------------------------------------------------------- /sample/sample-client/src/ServiceExecutor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/ServiceExecutor.tsx -------------------------------------------------------------------------------- /sample/sample-client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/index.css -------------------------------------------------------------------------------- /sample/sample-client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/index.tsx -------------------------------------------------------------------------------- /sample/sample-client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/logo.svg -------------------------------------------------------------------------------- /sample/sample-client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /sample/sample-client/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/serviceWorker.ts -------------------------------------------------------------------------------- /sample/sample-client/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/src/setupTests.ts -------------------------------------------------------------------------------- /sample/sample-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/tsconfig.json -------------------------------------------------------------------------------- /sample/sample-client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-client/yarn.lock -------------------------------------------------------------------------------- /sample/sample-core-server/JsonServices.Sample.CoreServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-core-server/JsonServices.Sample.CoreServer.csproj -------------------------------------------------------------------------------- /sample/sample-core-server/JsonServicesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-core-server/JsonServicesConfig.cs -------------------------------------------------------------------------------- /sample/sample-core-server/JsonServicesConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-core-server/JsonServicesConnectionManager.cs -------------------------------------------------------------------------------- /sample/sample-core-server/JsonServicesMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-core-server/JsonServicesMiddleware.cs -------------------------------------------------------------------------------- /sample/sample-core-server/JsonServicesMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-core-server/JsonServicesMiddlewareExtensions.cs -------------------------------------------------------------------------------- /sample/sample-core-server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-core-server/Program.cs -------------------------------------------------------------------------------- /sample/sample-core-server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-core-server/Properties/launchSettings.json -------------------------------------------------------------------------------- /sample/sample-core-server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-core-server/Startup.cs -------------------------------------------------------------------------------- /sample/sample-core-server/wwwroot/index.html: -------------------------------------------------------------------------------- 1 | Hello there! -------------------------------------------------------------------------------- /sample/sample-server/JsonServices.Sample.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-server/JsonServices.Sample.Server.csproj -------------------------------------------------------------------------------- /sample/sample-server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample-server/Program.cs -------------------------------------------------------------------------------- /sample/sample.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/sample/sample.bat -------------------------------------------------------------------------------- /src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/.vscode/launch.json -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword.Tests/JsonClientSrpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword.Tests/JsonClientSrpTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword.Tests/JsonServerSrpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword.Tests/JsonServerSrpTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword.Tests/JsonServices.Auth.SecureRemotePassword.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword.Tests/JsonServices.Auth.SecureRemotePassword.Tests.csproj -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword.Tests/SrpAuthProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword.Tests/SrpAuthProviderTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword.Tests/SrpProtocolConstantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword.Tests/SrpProtocolConstantsTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword.Tests/SrpStressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword.Tests/SrpStressTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword.Tests/StubAccountRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword.Tests/StubAccountRepository.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword/ISrpAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword/ISrpAccount.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword/ISrpAccountRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword/ISrpAccountRepository.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword/JsonServices.Auth.SecureRemotePassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword/JsonServices.Auth.SecureRemotePassword.csproj -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword/Properties/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword/Properties/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword/SrpAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword/SrpAuthProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword/SrpCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword/SrpCredentials.cs -------------------------------------------------------------------------------- /src/JsonServices.Auth.SecureRemotePassword/SrpProtocolConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Auth.SecureRemotePassword/SrpProtocolConstants.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Auth/JsonIdentityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Auth/JsonIdentityTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Auth/StubAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Auth/StubAuthProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Auth/StubAuthProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Auth/StubAuthProviderTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Events/ClientSubscriptionManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Events/ClientSubscriptionManagerTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Events/EventArgWithIntProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Events/EventArgWithIntProperty.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Events/EventArgWithLongProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Events/EventArgWithLongProperty.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Events/EventArgWithPropertyOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Events/EventArgWithPropertyOfT.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Events/EventArgWithStringProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Events/EventArgWithStringProperty.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Events/EventFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Events/EventFilterTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Exceptions/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Exceptions/ExceptionTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Exceptions/ExceptionTranslatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Exceptions/ExceptionTranslatorTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Exceptions/StubExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Exceptions/StubExceptionTranslator.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/JsonClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/JsonClientTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/JsonServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/JsonServerTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/JsonServices.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/JsonServices.Core.Tests.csproj -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/Calculate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/Calculate.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/CalculateResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/CalculateResponse.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/CalculateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/CalculateService.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/DelayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/DelayRequest.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/DelayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/DelayService.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/EventBroadcaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/EventBroadcaster.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/EventBroadcasterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/EventBroadcasterService.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/FilteredEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/FilteredEventArgs.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/Generic/GenericMessageTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/Generic/GenericMessageTypeProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/Generic/GenericMessageTypeProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/Generic/GenericMessageTypeProviderTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/Generic/GenericRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/Generic/GenericRequest.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/Generic/GenericResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/Generic/GenericResponse.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/Generic/GenericServiceExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/Generic/GenericServiceExecutor.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/Generic/IGenericRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/Generic/IGenericRequest.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/GetVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/GetVersion.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/GetVersionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/GetVersionResponse.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/GetVersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/GetVersionService.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/MessageTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Messages/MyCoolEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Messages/MyCoolEventArgs.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Properties/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Properties/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Serialization/BrokenSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Serialization/BrokenSerializer.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Services/BrokenMessageTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Services/BrokenMessageTypeProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Services/RequestContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Services/RequestContextTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Services/StubExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Services/StubExecutor.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Services/StubExecutorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Services/StubExecutorTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Services/StubMessageNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Services/StubMessageNameProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Services/StubMessageTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Services/StubMessageTypeProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Services/StubMessageTypeProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Services/StubMessageTypeProviderTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/StressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/StressTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/TestFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/TestFixtureBase.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/TestFixtureBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/TestFixtureBaseTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Transport/StubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Transport/StubClient.cs -------------------------------------------------------------------------------- /src/JsonServices.Core.Tests/Transport/StubServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core.Tests/Transport/StubServer.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Auth/AuthRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Auth/AuthRequest.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Auth/AuthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Auth/AuthResponse.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Auth/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Auth/AuthService.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Auth/CredentialsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Auth/CredentialsBase.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Auth/IAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Auth/IAuthProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Auth/ICredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Auth/ICredentials.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Auth/JsonIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Auth/JsonIdentity.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Auth/NullAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Auth/NullAuthProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Events/ClientSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Events/ClientSubscription.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Events/ClientSubscriptionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Events/ClientSubscriptionManager.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Events/EventFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Events/EventFilter.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Events/IClientSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Events/IClientSubscription.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Events/ServerSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Events/ServerSubscription.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Events/ServerSubscriptionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Events/ServerSubscriptionManager.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Events/SubscriptionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Events/SubscriptionMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Events/SubscriptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Events/SubscriptionService.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/AuthFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/AuthFailedException.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/AuthRequiredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/AuthRequiredException.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/ClientDisconnectedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/ClientDisconnectedException.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/ExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/ExceptionTranslator.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/IExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/IExceptionTranslator.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/InternalErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/InternalErrorException.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/InvalidRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/InvalidRequestException.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/JsonServicesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/JsonServicesException.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/MethodNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/MethodNotFoundException.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Exceptions/ParseErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Exceptions/ParseErrorException.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/IReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/IReturn.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/IReturnVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/IReturnVoid.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/JsonClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/JsonClient.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/JsonServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/JsonServer.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/JsonServices.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/JsonServices.Core.csproj -------------------------------------------------------------------------------- /src/JsonServices.Core/Messages/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Messages/Error.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Messages/ICustomName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Messages/ICustomName.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Messages/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Messages/IMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Messages/RequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Messages/RequestMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Messages/ResponseErrorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Messages/ResponseErrorMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Messages/ResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Messages/ResponseMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Messages/ResponseResultMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Messages/ResponseResultMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Properties/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Properties/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Serialization/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Serialization/ISerializer.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/IMessageNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/IMessageNameProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/IMessageTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/IMessageTypeProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/IMessageTypeProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/IMessageTypeProviderExtensions.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/IServiceExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/IServiceExecutor.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/MessageTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/MessageTypeProvider.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/RequestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/RequestContext.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/ServiceExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/ServiceExecutor.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/VersionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/VersionRequest.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/VersionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/VersionResponse.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Services/VersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Services/VersionService.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Sessions/ISessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Sessions/ISessionManager.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Sessions/LogoutMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Sessions/LogoutMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Sessions/LogoutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Sessions/LogoutService.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Sessions/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Sessions/Session.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Sessions/SessionManagerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Sessions/SessionManagerBase.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Transport/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Transport/IClient.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Transport/IConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Transport/IConnection.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Transport/IServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Transport/IServer.cs -------------------------------------------------------------------------------- /src/JsonServices.Core/Transport/MessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Core/Transport/MessageEventArgs.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Newtonsoft/Internal/GenericMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Newtonsoft/Internal/GenericMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Newtonsoft/Internal/IRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Newtonsoft/Internal/IRequestMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Newtonsoft/Internal/IResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Newtonsoft/Internal/IResponseMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Newtonsoft/Internal/RequestMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Newtonsoft/Internal/RequestMsg.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Newtonsoft/Internal/ResponseMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Newtonsoft/Internal/ResponseMsg.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Newtonsoft/JsonServices.Serialization.Newtonsoft.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Newtonsoft/JsonServices.Serialization.Newtonsoft.csproj -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Newtonsoft/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Newtonsoft/Serializer.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.ServiceStack/Internal/GenericMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.ServiceStack/Internal/GenericMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.ServiceStack/Internal/IRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.ServiceStack/Internal/IRequestMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.ServiceStack/Internal/IResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.ServiceStack/Internal/IResponseMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.ServiceStack/Internal/RequestMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.ServiceStack/Internal/RequestMsg.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.ServiceStack/Internal/ResponseMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.ServiceStack/Internal/ResponseMsg.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.ServiceStack/JsonServices.Serialization.ServiceStack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.ServiceStack/JsonServices.Serialization.ServiceStack.csproj -------------------------------------------------------------------------------- /src/JsonServices.Serialization.ServiceStack/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.ServiceStack/Serializer.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.ServiceStack4/JsonServices.Serialization.ServiceStack4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.ServiceStack4/JsonServices.Serialization.ServiceStack4.csproj -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/AnonymousConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/AnonymousConverterFactory.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/CultureInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/CultureInfoConverter.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/Internal/GenericError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/Internal/GenericError.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/Internal/GenericMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/Internal/GenericMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/Internal/IRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/Internal/IRequestMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/Internal/IResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/Internal/IResponseMessage.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/Internal/RequestMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/Internal/RequestMsg.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/Internal/ResponseMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/Internal/ResponseMsg.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/JsonServices.Serialization.SystemTextJson.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/JsonServices.Serialization.SystemTextJson.csproj -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/ObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/ObjectConverter.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/Serializer.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.SystemTextJson/TupleConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.SystemTextJson/TupleConverterFactory.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Tests/JsonServices.Serialization.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Tests/JsonServices.Serialization.Tests.csproj -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Tests/SerializableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Tests/SerializableTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Tests/SerializerTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Tests/SerializerTestsBase.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Tests/SerializerTestsNewtonsoft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Tests/SerializerTestsNewtonsoft.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Tests/SerializerTestsServicestack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Tests/SerializerTestsServicestack.cs -------------------------------------------------------------------------------- /src/JsonServices.Serialization.Tests/SerializerTestsSystemTextJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Serialization.Tests/SerializerTestsSystemTextJson.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.Fleck.Tests/FleckClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.Fleck.Tests/FleckClientTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.Fleck.Tests/FleckServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.Fleck.Tests/FleckServerTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.Fleck.Tests/FleckStressTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.Fleck.Tests/FleckStressTest.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.Fleck.Tests/JsonServices.Transport.Fleck.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.Fleck.Tests/JsonServices.Transport.Fleck.Tests.csproj -------------------------------------------------------------------------------- /src/JsonServices.Transport.Fleck/FleckClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.Fleck/FleckClient.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.Fleck/FleckServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.Fleck/FleckServer.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.Fleck/FleckSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.Fleck/FleckSession.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.Fleck/JsonServices.Transport.Fleck.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.Fleck/JsonServices.Transport.Fleck.csproj -------------------------------------------------------------------------------- /src/JsonServices.Transport.NetMQ.Tests/JsonServices.Transport.NetMQ.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.NetMQ.Tests/JsonServices.Transport.NetMQ.Tests.csproj -------------------------------------------------------------------------------- /src/JsonServices.Transport.NetMQ.Tests/NetMQClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.NetMQ.Tests/NetMQClientTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.NetMQ.Tests/NetMQServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.NetMQ.Tests/NetMQServerTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.NetMQ.Tests/NetMQStressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.NetMQ.Tests/NetMQStressTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.NetMQ/JsonServices.Transport.NetMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.NetMQ/JsonServices.Transport.NetMQ.csproj -------------------------------------------------------------------------------- /src/JsonServices.Transport.NetMQ/NetMQClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.NetMQ/NetMQClient.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.NetMQ/NetMQServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.NetMQ/NetMQServer.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.NetMQ/NetMQSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.NetMQ/NetMQSession.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.WebSocketSharp.Tests/JsonServices.Transport.WebSocketSharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.WebSocketSharp.Tests/JsonServices.Transport.WebSocketSharp.Tests.csproj -------------------------------------------------------------------------------- /src/JsonServices.Transport.WebSocketSharp.Tests/WebSocketClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.WebSocketSharp.Tests/WebSocketClientTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.WebSocketSharp.Tests/WebSocketServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.WebSocketSharp.Tests/WebSocketServerTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.WebSocketSharp.Tests/WebSocketStressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.WebSocketSharp.Tests/WebSocketStressTests.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.WebSocketSharp/JsonServices.Transport.WebSocketSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.WebSocketSharp/JsonServices.Transport.WebSocketSharp.csproj -------------------------------------------------------------------------------- /src/JsonServices.Transport.WebSocketSharp/WebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.WebSocketSharp/WebSocketClient.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.WebSocketSharp/WebSocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.WebSocketSharp/WebSocketServer.cs -------------------------------------------------------------------------------- /src/JsonServices.Transport.WebSocketSharp/WebSocketSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.Transport.WebSocketSharp/WebSocketSession.cs -------------------------------------------------------------------------------- /src/JsonServices.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.ruleset -------------------------------------------------------------------------------- /src/JsonServices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/JsonServices.sln -------------------------------------------------------------------------------- /src/nunit37.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/nunit37.bat -------------------------------------------------------------------------------- /src/nunit39.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/nunit39.bat -------------------------------------------------------------------------------- /src/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/src/test.bat -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yallie/JsonServices/HEAD/version.json --------------------------------------------------------------------------------