├── .editorconfig ├── .gitattributes ├── .gitignore ├── DotNetTest.bat ├── LICENSE ├── NuGet.Config ├── README.md ├── UiPath.Rpc ├── CI │ ├── azp-dotnet-dist.yaml │ ├── azp-dotnet.yaml │ ├── azp-initialization.yaml │ └── azp-start.yaml ├── NuGet.Config ├── RpcSample.ConsoleClient │ ├── App1.config │ ├── Client.cs │ ├── RpcSample.ConsoleClient.csproj │ ├── TcpClient.cs │ ├── WebSocketClient.cs │ └── app1.manifest ├── RpcSample.ConsoleServer │ ├── App1.config │ ├── RpcSample.ConsoleServer.csproj │ ├── Server.cs │ ├── TcpServer.cs │ ├── WebSocketServer.cs │ └── app1.manifest ├── UiPath.Rpc.Tests │ ├── ComputingTests.cs │ ├── EndpointTests.cs │ ├── Implementation │ │ ├── ComputingCallback.cs │ │ ├── ComputingService.cs │ │ ├── IpcHelpers.cs │ │ ├── OneWayStreamWrapper.cs │ │ └── SystemService.cs │ ├── NamedPipeTests.cs │ ├── NestedStreamTests.cs │ ├── SystemTests.cs │ ├── TcpTests..cs │ ├── TestBase.cs │ ├── UiPath.Rpc.Tests.csproj │ ├── ValidationTests.cs │ └── WebSocketTests.cs ├── UiPath.Rpc.sln └── UiPath.Rpc │ ├── CancellationTokenSourcePool.cs │ ├── Client │ ├── ClientConnectionsRegistry.cs │ ├── ServiceClient.cs │ └── ServiceClientBuilder.cs │ ├── Connection.cs │ ├── Dtos.cs │ ├── GlobalSuppressions.cs │ ├── Helpers.cs │ ├── NamedPipe │ ├── NamedPipeClient.cs │ ├── NamedPipeClientBuilder.cs │ └── NamedPipeListener.cs │ ├── NestedStream.cs │ ├── Server │ ├── Listener.cs │ ├── Server.cs │ ├── ServerConnection.cs │ ├── ServiceHost.cs │ └── ServiceHostBuilder.cs │ ├── TaskCompletionPool.cs │ ├── Tcp │ ├── TcpClient.cs │ ├── TcpClientBuilder.cs │ └── TcpListener.cs │ ├── UiPath.Rpc.csproj │ └── WebSockets │ ├── WebSocketClient.cs │ ├── WebSocketClientBuilder.cs │ ├── WebSocketListener.cs │ └── WebSocketStream.cs ├── readme └── diagram.svg └── src ├── CI ├── azp-dotnet-dist.yaml ├── azp-dotnet.yaml ├── azp-initialization.yaml ├── azp-js.publish-npm.steps.yaml ├── azp-nodejs-dist.yaml ├── azp-nodejs.yaml └── azp-start.yaml ├── Clients └── js │ ├── .editorconfig │ ├── .gitignore │ ├── .nycrc │ ├── .prettierrc.json │ ├── .vscode │ └── settings.json │ ├── README.md │ ├── assets │ ├── js-16x16.png │ ├── js-24x24.png │ ├── js-32x32.png │ ├── js-48x48.png │ ├── node │ │ ├── README.md │ │ └── npm-32x32.png │ ├── npm-16x16.png │ ├── npm-32x32.png │ ├── npm.png │ ├── npm.svg │ ├── web-js │ │ ├── README.md │ │ └── js-32x32.png │ └── web │ │ ├── README.md │ │ └── npm-32x32.png │ ├── dist-packages │ └── .gitkeep │ ├── dotnet │ ├── UiPath.CoreIpc.NodeInterop.sln │ └── UiPath.CoreIpc.NodeInterop │ │ ├── CompilerServices.cs │ │ ├── Contracts.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServiceImpls.cs │ │ ├── Signalling.cs │ │ └── UiPath.CoreIpc.NodeInterop.csproj │ ├── jasmine-console-reporter.d.ts │ ├── jasmine.node.json │ ├── jasmine.node.ts │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── readme-assets │ ├── diagram.png │ ├── dotnet.png │ ├── nodejs.png │ ├── npm.png │ └── nuget.png │ ├── republish.bat │ ├── src │ ├── node │ │ ├── Ipc.ts │ │ ├── NodeAddressBuilder.ts │ │ ├── Platform.ts │ │ ├── Transport │ │ │ ├── NamedPipes │ │ │ │ ├── NamedPipeAddress.ts │ │ │ │ ├── NamedPipeSocket.ts │ │ │ │ ├── NamedPipeSocketLike.ts │ │ │ │ ├── NamedPipeSocketLikeCtor.ts │ │ │ │ └── index.ts │ │ │ ├── WebSockets │ │ │ │ ├── NodeWebSocket.ts │ │ │ │ ├── NodeWebSocketAddress.ts │ │ │ │ ├── NodeWebSocketError.ts │ │ │ │ ├── NodeWebSocketLike.ts │ │ │ │ ├── NodeWebSocketLikeCtor.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── std │ │ ├── bcl │ │ │ ├── cancellation │ │ │ │ ├── CancellationToken.ts │ │ │ │ ├── CancellationTokenRegistration.ts │ │ │ │ ├── CancellationTokenSource.ts │ │ │ │ ├── EmptyCancellationToken.ts │ │ │ │ ├── LinkedCancellationTokenSource.ts │ │ │ │ ├── RandomCancellationToken.ts │ │ │ │ └── index.ts │ │ │ ├── collections │ │ │ │ ├── ConditionalWeakTable.ts │ │ │ │ ├── Dictionary.ts │ │ │ │ └── index.ts │ │ │ ├── diagnostics │ │ │ │ ├── Trace.ts │ │ │ │ └── index.ts │ │ │ ├── disposable │ │ │ │ ├── AggregateDisposable.ts │ │ │ │ ├── IAsyncDisposable.ts │ │ │ │ ├── IDisposable.ts │ │ │ │ └── index.ts │ │ │ ├── errors │ │ │ │ ├── AggregateError.ts │ │ │ │ ├── ArgumentError.ts │ │ │ │ ├── ArgumentErrorBase.ts │ │ │ │ ├── ArgumentNullError.ts │ │ │ │ ├── ArgumentOutOfRangeError.ts │ │ │ │ ├── CoreIpcError.ts │ │ │ │ ├── EndOfStreamError.ts │ │ │ │ ├── InvalidOperationError.ts │ │ │ │ ├── ObjectDisposedError.ts │ │ │ │ ├── OperationCanceledError.ts │ │ │ │ ├── PlatformNotSupportedError.ts │ │ │ │ ├── TimeoutError.ts │ │ │ │ ├── UnknownError.ts │ │ │ │ └── index.ts │ │ │ ├── helpers │ │ │ │ ├── argumentIs.ts │ │ │ │ ├── index.ts │ │ │ │ └── nameof.ts │ │ │ ├── index.ts │ │ │ ├── io │ │ │ │ ├── BitConverter.ts │ │ │ │ ├── Marshal.ts │ │ │ │ ├── Socket.ts │ │ │ │ ├── SocketStream.ts │ │ │ │ ├── Stream.ts │ │ │ │ ├── SupportedConversion.ts │ │ │ │ └── index.ts │ │ │ ├── promises │ │ │ │ ├── FinalState.ts │ │ │ │ ├── PromiseCompletionSource.ts │ │ │ │ ├── PromiseCompletionSourceInternal.ts │ │ │ │ ├── PromisePal.ts │ │ │ │ ├── PromiseSpy.ts │ │ │ │ ├── PromiseSpyImpl.ts │ │ │ │ ├── PromiseStatus.ts │ │ │ │ └── index.ts │ │ │ ├── reflection │ │ │ │ ├── Constructor │ │ │ │ │ ├── ParameterlessPublic.ts │ │ │ │ │ ├── PublicCtor.ts │ │ │ │ │ ├── UnnamedPublicCtor.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── ObjectPal.ts │ │ │ │ ├── Type │ │ │ │ │ ├── ExtendedType.ts │ │ │ │ │ ├── Primitive.ts │ │ │ │ │ ├── PrimitiveDefinedNonObjectTypeName.ts │ │ │ │ │ ├── PrimitiveDefinedTypeName.ts │ │ │ │ │ ├── PrimitiveTypeName.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── serialization │ │ │ │ ├── JsonConvert.ts │ │ │ │ └── index.ts │ │ │ ├── synchronization │ │ │ │ ├── AsyncAutoResetEvent.ts │ │ │ │ └── index.ts │ │ │ ├── system │ │ │ │ ├── IPlatform.ts │ │ │ │ └── index.ts │ │ │ └── time │ │ │ │ ├── TimeSpan.ts │ │ │ │ ├── Timeout.ts │ │ │ │ └── index.ts │ │ ├── core │ │ │ ├── Addresses │ │ │ │ ├── Address.ts │ │ │ │ ├── AddressBuilder.ts │ │ │ │ ├── AddressSelectionDelegate.ts │ │ │ │ └── index.ts │ │ │ ├── Annotations │ │ │ │ ├── OperationAnnotations.ts │ │ │ │ ├── OperationAnnotationsWrapper.ts │ │ │ │ ├── ServiceAnnotations.ts │ │ │ │ ├── ServiceAnnotationsWrapper.ts │ │ │ │ └── index.ts │ │ │ ├── Callbacks │ │ │ │ ├── Callback.ts │ │ │ │ ├── CallbackImpl.ts │ │ │ │ └── index.ts │ │ │ ├── Configuration │ │ │ │ ├── ConfigStore.ts │ │ │ │ ├── ConnectContext.ts │ │ │ │ ├── ConnectHelper.ts │ │ │ │ └── index.ts │ │ │ ├── Contract │ │ │ │ ├── ContractStore.ts │ │ │ │ ├── IContractStore.ts │ │ │ │ ├── Message.ts │ │ │ │ ├── OperationDescriptor.ts │ │ │ │ ├── OperationDescriptorImpl.ts │ │ │ │ ├── OperationDescriptorTable.ts │ │ │ │ ├── ServiceDescriptor.ts │ │ │ │ ├── ServiceDescriptorImpl.ts │ │ │ │ └── index.ts │ │ │ ├── IServiceProvider.ts │ │ │ ├── IpcBase.ts │ │ │ ├── Protocol │ │ │ │ ├── Errors │ │ │ │ │ ├── IpcError.ts │ │ │ │ │ ├── RemoteError.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Network │ │ │ │ │ ├── IMessageStream.ts │ │ │ │ │ ├── MessageStream.ts │ │ │ │ │ ├── Network.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Rpc │ │ │ │ │ ├── Converter.ts │ │ │ │ │ ├── IRpcChannel.ts │ │ │ │ │ ├── IRpcChannelFactory.ts │ │ │ │ │ ├── IncommingInitiatingRpcMessage.ts │ │ │ │ │ ├── RpcCallContext.ts │ │ │ │ │ ├── RpcChannel.ts │ │ │ │ │ ├── RpcMessage.ts │ │ │ │ │ ├── RpcMessageBase.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── Proxies │ │ │ │ ├── CallbackStoreImpl.ts │ │ │ │ ├── ChannelManager.ts │ │ │ │ ├── DispatchProxy │ │ │ │ │ ├── DispatchProxyClass.ts │ │ │ │ │ ├── DispatchProxyClassStore.ts │ │ │ │ │ ├── ICallInterceptor.ts │ │ │ │ │ ├── ICallInterceptorContainer.ts │ │ │ │ │ ├── MethodNameEnumerator.ts │ │ │ │ │ ├── Weaver.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── ProxyId.ts │ │ │ │ ├── ProxySource.ts │ │ │ │ ├── RpcRequestFactory.ts │ │ │ │ ├── Wire.ts │ │ │ │ └── index.ts │ │ │ ├── ServiceId.ts │ │ │ └── index.ts │ │ └── index.ts │ └── web │ │ ├── Ipc.ts │ │ ├── Platform.ts │ │ ├── Transport │ │ ├── WebSockets │ │ │ ├── BrowserWebSocket.ts │ │ │ ├── BrowserWebSocketAddress.ts │ │ │ ├── BrowserWebSocketError.ts │ │ │ ├── BrowserWebSocketLike.ts │ │ │ ├── BrowserWebSocketLikeCtor.ts │ │ │ └── index.ts │ │ └── index.ts │ │ ├── WebAddressBuilder.ts │ │ └── index.ts │ ├── test │ ├── dotnet │ │ ├── CoreIpcServer │ │ │ ├── CoreIpcServer.ts │ │ │ ├── DotNetProcess.ts │ │ │ ├── InteropAddress.ts │ │ │ ├── NonZeroExitError.ts │ │ │ ├── NpmProcess.ts │ │ │ ├── Paths.ts │ │ │ ├── Signal.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── infrastructure │ │ ├── MockServiceProvider.ts │ │ ├── __.ts │ │ ├── __members.ts │ │ ├── __parameters.ts │ │ ├── cover │ │ │ ├── index.ts │ │ │ └── internal │ │ │ │ ├── CoverTypeContext.ts │ │ │ │ ├── coverType.ts │ │ │ │ ├── funky.ts │ │ │ │ └── index.ts │ │ ├── cover2 │ │ │ ├── Cover.ts │ │ │ ├── funky.ts │ │ │ └── index.ts │ │ ├── coverOld.ts │ │ ├── index.ts │ │ └── overloadedParameters.ts │ ├── node │ │ ├── Contracts │ │ │ ├── IAlgebra.ts │ │ │ ├── IArithmetic.ts │ │ │ └── index.ts │ │ ├── Fixtures │ │ │ └── index.ts │ │ ├── core │ │ │ ├── ConfigStore.test.ts │ │ │ └── Ipc.test.ts │ │ └── end-to-end.test.ts │ ├── std │ │ └── bcl │ │ │ ├── AggregateDisposable.test.ts │ │ │ ├── AggregateError.test.ts │ │ │ ├── ArgumentError.test.ts │ │ │ ├── ArgumentNullError.test.ts │ │ │ ├── ArgumentOutOfRangeError.test.ts │ │ │ ├── AsyncAutoResetEvent.test.ts │ │ │ ├── CancellationToken.test.ts │ │ │ ├── CancellationTokenSource.test.ts │ │ │ ├── ConditionalWeakTable.test.ts │ │ │ ├── DispatchProxyClassStore.test.ts │ │ │ ├── PromiseCompletionSource.test.ts │ │ │ ├── PromisePal.test.ts │ │ │ ├── RandomCancellationToken.test.ts │ │ │ ├── TimeSpan.test.ts │ │ │ ├── Trace.test.ts │ │ │ └── final-states.spec.ts │ └── web │ │ ├── Contracts │ │ ├── IAlgebra.ts │ │ ├── IArithmetic.ts │ │ └── index.ts │ │ ├── Fixtures │ │ ├── AlgebraProxy.ts │ │ ├── ProxyFactory.ts │ │ ├── ServerUrl.ts │ │ └── index.ts │ │ ├── core │ │ └── ConfigStore.test.ts │ │ └── end-to-end.test.ts │ ├── tsconfig.common.json │ ├── tsconfig.dotnet.json │ ├── tsconfig.jasmine.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── tsconfig.test.json │ ├── tsconfig.web-js.json │ ├── tsconfig.web.json │ ├── tslint.json │ ├── webpack.common.js │ └── webpack.dev.js ├── CoreIpc.sln ├── CoreIpc.sln.startup.json ├── Directory.Build.props ├── Directory.Build.targets ├── IpcSample.ConsoleClient ├── App1.config ├── Client.cs ├── IpcSample.ConsoleClient.csproj ├── TcpClient.cs ├── WebSocketClient.cs └── app1.manifest ├── IpcSample.ConsoleServer ├── App1.config ├── IpcSample.ConsoleServer.csproj ├── Server.cs ├── TcpServer.cs ├── WebSocketServer.cs └── app1.manifest ├── Playground ├── Contracts.cs ├── Impl.cs ├── Playground.csproj └── Program.cs ├── UiPath.CoreIpc.Extensions.Abstractions ├── ServerTransportBase.cs └── UiPath.CoreIpc.Extensions.Abstractions.csproj ├── UiPath.CoreIpc.Extensions.BidirectionalHttp ├── BidiHttpServerTransport.cs ├── Constants.cs ├── GlobalUsings.cs ├── Polyfills │ ├── CallerArgumentExpressionAttribute.cs │ ├── CancellationTokenExtensions.cs │ ├── CompilerFeatureRequiredAttribute.cs │ ├── EnumerableExtensions.cs │ ├── IsExternalInit.cs │ ├── MemberNotNullAttribute.cs │ ├── MemberNotNullWhenAttribute.cs │ ├── NotNullIfNotNullAttribute.cs │ ├── NotNullWhenAttribute.cs │ ├── RequiredMemberAttribute.cs │ ├── SetsRequiredMembersAttribute.cs │ ├── StreamExtensions.cs │ ├── System_Index.cs │ └── TcpClientExtensions.cs └── UiPath.CoreIpc.Extensions.BidirectionalHttp.csproj ├── UiPath.CoreIpc.Tests ├── ComputingTests.cs ├── ComputingTestsOverNamedPipes.cs ├── ComputingTestsOverTcp.cs ├── ComputingTestsOverWebSockets.cs ├── Config │ └── OverrideConfigAttribute.cs ├── GlobalUsings.cs ├── Helpers │ ├── DiExtensions.cs │ ├── HttpSysWebSocketsListener.cs │ ├── IpcAutoDataAttribute.cs │ ├── IpcHelpers.cs │ ├── Names.cs │ ├── NetworkHelper.cs │ ├── ShouldlyHelpers.cs │ ├── StreamBase.cs │ ├── StreamExtensions.cs │ ├── TestRunId.cs │ ├── Timeouts.cs │ ├── TracedStream.cs │ └── WebSocketContext.cs ├── NamedPipeSmokeTests.NetCore.cs ├── NamedPipeSmokeTests.cs ├── Polyfills │ ├── CallerArgumentExpressionAttribute.cs │ ├── IsExternalInit.cs │ └── System_Index.cs ├── Program.cs ├── RobotTests.cs ├── RobotTestsOverNamedPipes.cs ├── Services │ ├── ArithmeticCallback.cs │ ├── ComputingCallback.cs │ ├── ComputingService.cs │ ├── IComputingService.cs │ ├── ISystemService.cs │ ├── Robot │ │ ├── Contracts.cs │ │ ├── Impl.cs │ │ └── Pals.cs │ └── SystemService.cs ├── SpyTestBase.cs ├── SyncOverAsyncTests.cs ├── SystemTests.cs ├── SystemTestsOverNamedPipes.cs ├── SystemTestsOverTcp.cs ├── SystemTestsOverWebSockets.cs ├── TestBase.cs ├── UiPath.CoreIpc.Tests.csproj └── Xunit │ └── CustomTestFramework.cs └── UiPath.CoreIpc ├── Client ├── CallInfo.cs ├── IpcProxy.cs └── ServiceClient.cs ├── Config ├── ClientTransport.cs ├── ContractCollection.cs ├── IClientConfig.cs ├── IClientState.cs ├── IpcBase.cs ├── IpcClient.cs ├── IpcServer.cs └── ServerTransport.cs ├── Connection.cs ├── GlobalSuppressions.cs ├── GlobalUsings.cs ├── Helpers ├── CancellationTokenSourcePool.cs ├── DefaultsExtensions.cs ├── FastAsyncLock.cs ├── Helpers.cs ├── NestedStream.cs ├── Result.cs ├── Router.cs └── TaskCompletionPool.cs ├── Logging └── LoggingExtensions.cs ├── Polyfills ├── CallerArgumentExpressionAttribute.cs ├── CancellationTokenExtensions.cs ├── CompilerFeatureRequiredAttribute.cs ├── EnumerableExtensions.cs ├── IsExternalInit.cs ├── MemberNotNullAttribute.cs ├── MemberNotNullWhenAttribute.cs ├── NotNullIfNotNullAttribute.cs ├── NotNullWhenAttribute.cs ├── RequiredMemberAttribute.cs ├── SetsRequiredMembersAttribute.cs ├── System_Index.cs └── TcpClientExtensions.cs ├── Server ├── ContractSettings.cs ├── IClient.cs ├── Server.cs └── ServerConnection.cs ├── Transport ├── NamedPipe │ ├── NamedPipeClientTransport.cs │ └── NamedPipeServerTransport.cs ├── Tcp │ ├── TcpClientTransport.cs │ └── TcpServerTransport.cs └── WebSocket │ ├── WebSocketClientTransport.cs │ ├── WebSocketServerTransport.cs │ └── WebSocketStream.cs ├── UiPath.CoreIpc.csproj ├── Wire ├── Dtos.cs ├── EndpointNotFoundException.cs └── IpcJsonSerializer.cs └── report ├── UiPath.Ipc.net461.received.txt ├── UiPath.Ipc.net6.0-windows.received.txt └── generate-report.bat /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/.gitignore -------------------------------------------------------------------------------- /DotNetTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/DotNetTest.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/README.md -------------------------------------------------------------------------------- /UiPath.Rpc/CI/azp-dotnet-dist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/CI/azp-dotnet-dist.yaml -------------------------------------------------------------------------------- /UiPath.Rpc/CI/azp-dotnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/CI/azp-dotnet.yaml -------------------------------------------------------------------------------- /UiPath.Rpc/CI/azp-initialization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/CI/azp-initialization.yaml -------------------------------------------------------------------------------- /UiPath.Rpc/CI/azp-start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/CI/azp-start.yaml -------------------------------------------------------------------------------- /UiPath.Rpc/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/NuGet.Config -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleClient/App1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleClient/App1.config -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleClient/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleClient/Client.cs -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleClient/RpcSample.ConsoleClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleClient/RpcSample.ConsoleClient.csproj -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleClient/TcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleClient/TcpClient.cs -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleClient/WebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleClient/WebSocketClient.cs -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleClient/app1.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleClient/app1.manifest -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleServer/App1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleServer/App1.config -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleServer/RpcSample.ConsoleServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleServer/RpcSample.ConsoleServer.csproj -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleServer/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleServer/Server.cs -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleServer/TcpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleServer/TcpServer.cs -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleServer/WebSocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleServer/WebSocketServer.cs -------------------------------------------------------------------------------- /UiPath.Rpc/RpcSample.ConsoleServer/app1.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/RpcSample.ConsoleServer/app1.manifest -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/ComputingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/ComputingTests.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/EndpointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/EndpointTests.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/Implementation/ComputingCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/Implementation/ComputingCallback.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/Implementation/ComputingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/Implementation/ComputingService.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/Implementation/IpcHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/Implementation/IpcHelpers.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/Implementation/OneWayStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/Implementation/OneWayStreamWrapper.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/Implementation/SystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/Implementation/SystemService.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/NamedPipeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/NamedPipeTests.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/NestedStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/NestedStreamTests.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/SystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/SystemTests.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/TcpTests..cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/TcpTests..cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/TestBase.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/UiPath.Rpc.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/UiPath.Rpc.Tests.csproj -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/ValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/ValidationTests.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.Tests/WebSocketTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.Tests/WebSocketTests.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc.sln -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/CancellationTokenSourcePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/CancellationTokenSourcePool.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Client/ClientConnectionsRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Client/ClientConnectionsRegistry.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Client/ServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Client/ServiceClient.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Client/ServiceClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Client/ServiceClientBuilder.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Connection.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Dtos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Dtos.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/GlobalSuppressions.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Helpers.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/NamedPipe/NamedPipeClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/NamedPipe/NamedPipeClient.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/NamedPipe/NamedPipeClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/NamedPipe/NamedPipeClientBuilder.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/NamedPipe/NamedPipeListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/NamedPipe/NamedPipeListener.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/NestedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/NestedStream.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Server/Listener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Server/Listener.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Server/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Server/Server.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Server/ServerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Server/ServerConnection.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Server/ServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Server/ServiceHost.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Server/ServiceHostBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Server/ServiceHostBuilder.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/TaskCompletionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/TaskCompletionPool.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Tcp/TcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Tcp/TcpClient.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Tcp/TcpClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Tcp/TcpClientBuilder.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/Tcp/TcpListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/Tcp/TcpListener.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/UiPath.Rpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/UiPath.Rpc.csproj -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/WebSockets/WebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/WebSockets/WebSocketClient.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/WebSockets/WebSocketClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/WebSockets/WebSocketClientBuilder.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/WebSockets/WebSocketListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/WebSockets/WebSocketListener.cs -------------------------------------------------------------------------------- /UiPath.Rpc/UiPath.Rpc/WebSockets/WebSocketStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/UiPath.Rpc/UiPath.Rpc/WebSockets/WebSocketStream.cs -------------------------------------------------------------------------------- /readme/diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/readme/diagram.svg -------------------------------------------------------------------------------- /src/CI/azp-dotnet-dist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/CI/azp-dotnet-dist.yaml -------------------------------------------------------------------------------- /src/CI/azp-dotnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/CI/azp-dotnet.yaml -------------------------------------------------------------------------------- /src/CI/azp-initialization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/CI/azp-initialization.yaml -------------------------------------------------------------------------------- /src/CI/azp-js.publish-npm.steps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/CI/azp-js.publish-npm.steps.yaml -------------------------------------------------------------------------------- /src/CI/azp-nodejs-dist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/CI/azp-nodejs-dist.yaml -------------------------------------------------------------------------------- /src/CI/azp-nodejs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/CI/azp-nodejs.yaml -------------------------------------------------------------------------------- /src/CI/azp-start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/CI/azp-start.yaml -------------------------------------------------------------------------------- /src/Clients/js/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/.editorconfig -------------------------------------------------------------------------------- /src/Clients/js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/.gitignore -------------------------------------------------------------------------------- /src/Clients/js/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/.nycrc -------------------------------------------------------------------------------- /src/Clients/js/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/.prettierrc.json -------------------------------------------------------------------------------- /src/Clients/js/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/.vscode/settings.json -------------------------------------------------------------------------------- /src/Clients/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/README.md -------------------------------------------------------------------------------- /src/Clients/js/assets/js-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/js-16x16.png -------------------------------------------------------------------------------- /src/Clients/js/assets/js-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/js-24x24.png -------------------------------------------------------------------------------- /src/Clients/js/assets/js-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/js-32x32.png -------------------------------------------------------------------------------- /src/Clients/js/assets/js-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/js-48x48.png -------------------------------------------------------------------------------- /src/Clients/js/assets/node/README.md: -------------------------------------------------------------------------------- 1 | # **![The NPM icon](./npm-32x32.png) UiPath/CoreIpc for NodeJS** (NPM Package) 2 | 3 | -------------------------------------------------------------------------------- /src/Clients/js/assets/node/npm-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/node/npm-32x32.png -------------------------------------------------------------------------------- /src/Clients/js/assets/npm-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/npm-16x16.png -------------------------------------------------------------------------------- /src/Clients/js/assets/npm-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/npm-32x32.png -------------------------------------------------------------------------------- /src/Clients/js/assets/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/npm.png -------------------------------------------------------------------------------- /src/Clients/js/assets/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/npm.svg -------------------------------------------------------------------------------- /src/Clients/js/assets/web-js/README.md: -------------------------------------------------------------------------------- 1 | # **![The NPM icon](./js-32x32.png) UiPath/CoreIpc for Web** (Self-contained JavaScript bundle) 2 | 3 | -------------------------------------------------------------------------------- /src/Clients/js/assets/web-js/js-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/web-js/js-32x32.png -------------------------------------------------------------------------------- /src/Clients/js/assets/web/README.md: -------------------------------------------------------------------------------- 1 | # **![The NPM icon](./npm-32x32.png) UiPath/CoreIpc for Web** (NPM package) 2 | 3 | -------------------------------------------------------------------------------- /src/Clients/js/assets/web/npm-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/assets/web/npm-32x32.png -------------------------------------------------------------------------------- /src/Clients/js/dist-packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop.sln -------------------------------------------------------------------------------- /src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/CompilerServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/CompilerServices.cs -------------------------------------------------------------------------------- /src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Contracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Contracts.cs -------------------------------------------------------------------------------- /src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Program.cs -------------------------------------------------------------------------------- /src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/ServiceImpls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/ServiceImpls.cs -------------------------------------------------------------------------------- /src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Signalling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Signalling.cs -------------------------------------------------------------------------------- /src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/UiPath.CoreIpc.NodeInterop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/UiPath.CoreIpc.NodeInterop.csproj -------------------------------------------------------------------------------- /src/Clients/js/jasmine-console-reporter.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'jasmine-console-reporter'; 2 | -------------------------------------------------------------------------------- /src/Clients/js/jasmine.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/jasmine.node.json -------------------------------------------------------------------------------- /src/Clients/js/jasmine.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/jasmine.node.ts -------------------------------------------------------------------------------- /src/Clients/js/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/karma.conf.js -------------------------------------------------------------------------------- /src/Clients/js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/package-lock.json -------------------------------------------------------------------------------- /src/Clients/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/package.json -------------------------------------------------------------------------------- /src/Clients/js/readme-assets/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/readme-assets/diagram.png -------------------------------------------------------------------------------- /src/Clients/js/readme-assets/dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/readme-assets/dotnet.png -------------------------------------------------------------------------------- /src/Clients/js/readme-assets/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/readme-assets/nodejs.png -------------------------------------------------------------------------------- /src/Clients/js/readme-assets/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/readme-assets/npm.png -------------------------------------------------------------------------------- /src/Clients/js/readme-assets/nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/readme-assets/nuget.png -------------------------------------------------------------------------------- /src/Clients/js/republish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/republish.bat -------------------------------------------------------------------------------- /src/Clients/js/src/node/Ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Ipc.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/NodeAddressBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/NodeAddressBuilder.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Platform.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/NamedPipes/NamedPipeAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/NamedPipes/NamedPipeAddress.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/NamedPipes/NamedPipeSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/NamedPipes/NamedPipeSocket.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/NamedPipes/NamedPipeSocketLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/NamedPipes/NamedPipeSocketLike.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/NamedPipes/NamedPipeSocketLikeCtor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/NamedPipes/NamedPipeSocketLikeCtor.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/NamedPipes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/NamedPipes/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/WebSockets/NodeWebSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/WebSockets/NodeWebSocket.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/WebSockets/NodeWebSocketAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/WebSockets/NodeWebSocketAddress.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/WebSockets/NodeWebSocketError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/WebSockets/NodeWebSocketError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/WebSockets/NodeWebSocketLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/WebSockets/NodeWebSocketLike.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/WebSockets/NodeWebSocketLikeCtor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/WebSockets/NodeWebSocketLikeCtor.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/WebSockets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/WebSockets/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/Transport/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/Transport/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/node/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/cancellation/CancellationToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/cancellation/CancellationToken.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/cancellation/CancellationTokenRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/cancellation/CancellationTokenRegistration.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/cancellation/CancellationTokenSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/cancellation/CancellationTokenSource.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/cancellation/EmptyCancellationToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/cancellation/EmptyCancellationToken.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/cancellation/LinkedCancellationTokenSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/cancellation/LinkedCancellationTokenSource.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/cancellation/RandomCancellationToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/cancellation/RandomCancellationToken.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/cancellation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/cancellation/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/collections/ConditionalWeakTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/collections/ConditionalWeakTable.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/collections/Dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/collections/Dictionary.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/collections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/collections/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/diagnostics/Trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/diagnostics/Trace.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/diagnostics/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Trace'; 2 | -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/disposable/AggregateDisposable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/disposable/AggregateDisposable.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/disposable/IAsyncDisposable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/disposable/IAsyncDisposable.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/disposable/IDisposable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/disposable/IDisposable.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/disposable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/disposable/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/AggregateError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/AggregateError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/ArgumentError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/ArgumentError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/ArgumentErrorBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/ArgumentErrorBase.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/ArgumentNullError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/ArgumentNullError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/ArgumentOutOfRangeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/ArgumentOutOfRangeError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/CoreIpcError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/CoreIpcError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/EndOfStreamError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/EndOfStreamError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/InvalidOperationError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/InvalidOperationError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/ObjectDisposedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/ObjectDisposedError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/OperationCanceledError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/OperationCanceledError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/PlatformNotSupportedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/PlatformNotSupportedError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/TimeoutError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/TimeoutError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/UnknownError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/UnknownError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/errors/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/helpers/argumentIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/helpers/argumentIs.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/helpers/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/helpers/nameof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/helpers/nameof.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/io/BitConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/io/BitConverter.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/io/Marshal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/io/Marshal.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/io/Socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/io/Socket.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/io/SocketStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/io/SocketStream.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/io/Stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/io/Stream.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/io/SupportedConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/io/SupportedConversion.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/io/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/io/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/promises/FinalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/promises/FinalState.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/promises/PromiseCompletionSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/promises/PromiseCompletionSource.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/promises/PromiseCompletionSourceInternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/promises/PromiseCompletionSourceInternal.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/promises/PromisePal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/promises/PromisePal.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/promises/PromiseSpy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/promises/PromiseSpy.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/promises/PromiseSpyImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/promises/PromiseSpyImpl.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/promises/PromiseStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/promises/PromiseStatus.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/promises/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/promises/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Constructor/ParameterlessPublic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/Constructor/ParameterlessPublic.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Constructor/PublicCtor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/Constructor/PublicCtor.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Constructor/UnnamedPublicCtor.ts: -------------------------------------------------------------------------------- 1 | export interface UnnamedPublicCtor { 2 | new (...args: any[]): T; 3 | } 4 | -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Constructor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/Constructor/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/ObjectPal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/ObjectPal.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Type/ExtendedType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/Type/ExtendedType.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Type/Primitive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/Type/Primitive.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Type/PrimitiveDefinedNonObjectTypeName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/Type/PrimitiveDefinedNonObjectTypeName.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Type/PrimitiveDefinedTypeName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/Type/PrimitiveDefinedTypeName.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Type/PrimitiveTypeName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/Type/PrimitiveTypeName.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/Type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/Type/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/reflection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/reflection/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/serialization/JsonConvert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/serialization/JsonConvert.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/serialization/index.ts: -------------------------------------------------------------------------------- 1 | export * from './JsonConvert'; 2 | -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/synchronization/AsyncAutoResetEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/synchronization/AsyncAutoResetEvent.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/synchronization/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AsyncAutoResetEvent'; 2 | -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/system/IPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/system/IPlatform.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/system/index.ts: -------------------------------------------------------------------------------- 1 | export * from './IPlatform'; 2 | -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/time/TimeSpan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/time/TimeSpan.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/time/Timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/time/Timeout.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/bcl/time/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/bcl/time/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Addresses/Address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Addresses/Address.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Addresses/AddressBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Addresses/AddressBuilder.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Addresses/AddressSelectionDelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Addresses/AddressSelectionDelegate.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Addresses/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Addresses/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Annotations/OperationAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Annotations/OperationAnnotations.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Annotations/OperationAnnotationsWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Annotations/OperationAnnotationsWrapper.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Annotations/ServiceAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Annotations/ServiceAnnotations.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Annotations/ServiceAnnotationsWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Annotations/ServiceAnnotationsWrapper.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Annotations/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Callbacks/Callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Callbacks/Callback.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Callbacks/CallbackImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Callbacks/CallbackImpl.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Callbacks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Callbacks/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Configuration/ConfigStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Configuration/ConfigStore.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Configuration/ConnectContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Configuration/ConnectContext.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Configuration/ConnectHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Configuration/ConnectHelper.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Configuration/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Contract/ContractStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Contract/ContractStore.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Contract/IContractStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Contract/IContractStore.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Contract/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Contract/Message.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Contract/OperationDescriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Contract/OperationDescriptor.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Contract/OperationDescriptorImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Contract/OperationDescriptorImpl.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Contract/OperationDescriptorTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Contract/OperationDescriptorTable.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Contract/ServiceDescriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Contract/ServiceDescriptor.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Contract/ServiceDescriptorImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Contract/ServiceDescriptorImpl.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Contract/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Contract/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/IServiceProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/IServiceProvider.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/IpcBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/IpcBase.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Errors/IpcError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Errors/IpcError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Errors/RemoteError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Errors/RemoteError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Errors/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Network/IMessageStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Network/IMessageStream.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Network/MessageStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Network/MessageStream.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Network/Network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Network/Network.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Network/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Network/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Rpc/Converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Rpc/Converter.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Rpc/IRpcChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Rpc/IRpcChannel.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Rpc/IRpcChannelFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Rpc/IRpcChannelFactory.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Rpc/IncommingInitiatingRpcMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Rpc/IncommingInitiatingRpcMessage.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Rpc/RpcCallContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Rpc/RpcCallContext.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Rpc/RpcChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Rpc/RpcChannel.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Rpc/RpcMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Rpc/RpcMessage.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Rpc/RpcMessageBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Rpc/RpcMessageBase.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/Rpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/Rpc/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Protocol/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Protocol/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/CallbackStoreImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/CallbackStoreImpl.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/ChannelManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/ChannelManager.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/DispatchProxy/DispatchProxyClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/DispatchProxy/DispatchProxyClass.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/DispatchProxy/DispatchProxyClassStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/DispatchProxy/DispatchProxyClassStore.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/DispatchProxy/ICallInterceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/DispatchProxy/ICallInterceptor.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/DispatchProxy/ICallInterceptorContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/DispatchProxy/ICallInterceptorContainer.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/DispatchProxy/MethodNameEnumerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/DispatchProxy/MethodNameEnumerator.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/DispatchProxy/Weaver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/DispatchProxy/Weaver.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/DispatchProxy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/DispatchProxy/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/ProxyId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/ProxyId.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/ProxySource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/ProxySource.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/RpcRequestFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/RpcRequestFactory.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/Wire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/Wire.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/Proxies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/Proxies/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/ServiceId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/ServiceId.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/core/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/std/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/std/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/Ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/Ipc.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/Platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/Platform.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocket.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocketAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocketAddress.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocketError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocketError.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocketLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocketLike.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocketLikeCtor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/Transport/WebSockets/BrowserWebSocketLikeCtor.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/Transport/WebSockets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/Transport/WebSockets/index.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/Transport/index.ts: -------------------------------------------------------------------------------- 1 | export * from './WebSockets'; 2 | -------------------------------------------------------------------------------- /src/Clients/js/src/web/WebAddressBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/WebAddressBuilder.ts -------------------------------------------------------------------------------- /src/Clients/js/src/web/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/src/web/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/dotnet/CoreIpcServer/CoreIpcServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/dotnet/CoreIpcServer/CoreIpcServer.ts -------------------------------------------------------------------------------- /src/Clients/js/test/dotnet/CoreIpcServer/DotNetProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/dotnet/CoreIpcServer/DotNetProcess.ts -------------------------------------------------------------------------------- /src/Clients/js/test/dotnet/CoreIpcServer/InteropAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/dotnet/CoreIpcServer/InteropAddress.ts -------------------------------------------------------------------------------- /src/Clients/js/test/dotnet/CoreIpcServer/NonZeroExitError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/dotnet/CoreIpcServer/NonZeroExitError.ts -------------------------------------------------------------------------------- /src/Clients/js/test/dotnet/CoreIpcServer/NpmProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/dotnet/CoreIpcServer/NpmProcess.ts -------------------------------------------------------------------------------- /src/Clients/js/test/dotnet/CoreIpcServer/Paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/dotnet/CoreIpcServer/Paths.ts -------------------------------------------------------------------------------- /src/Clients/js/test/dotnet/CoreIpcServer/Signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/dotnet/CoreIpcServer/Signal.ts -------------------------------------------------------------------------------- /src/Clients/js/test/dotnet/CoreIpcServer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/dotnet/CoreIpcServer/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/dotnet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/dotnet/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/MockServiceProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/MockServiceProvider.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/__.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/__members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/__members.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/__parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/__parameters.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/cover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/cover/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/cover/internal/CoverTypeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/cover/internal/CoverTypeContext.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/cover/internal/coverType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/cover/internal/coverType.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/cover/internal/funky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/cover/internal/funky.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/cover/internal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/cover/internal/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/cover2/Cover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/cover2/Cover.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/cover2/funky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/cover2/funky.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/cover2/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Cover'; 2 | -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/coverOld.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/coverOld.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/infrastructure/overloadedParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/infrastructure/overloadedParameters.ts -------------------------------------------------------------------------------- /src/Clients/js/test/node/Contracts/IAlgebra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/node/Contracts/IAlgebra.ts -------------------------------------------------------------------------------- /src/Clients/js/test/node/Contracts/IArithmetic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/node/Contracts/IArithmetic.ts -------------------------------------------------------------------------------- /src/Clients/js/test/node/Contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/node/Contracts/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/node/Fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/node/Fixtures/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/node/core/ConfigStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/node/core/ConfigStore.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/node/core/Ipc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/node/core/Ipc.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/node/end-to-end.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/node/end-to-end.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/AggregateDisposable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/AggregateDisposable.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/AggregateError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/AggregateError.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/ArgumentError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/ArgumentError.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/ArgumentNullError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/ArgumentNullError.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/ArgumentOutOfRangeError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/ArgumentOutOfRangeError.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/AsyncAutoResetEvent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/AsyncAutoResetEvent.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/CancellationToken.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/CancellationToken.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/CancellationTokenSource.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/CancellationTokenSource.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/ConditionalWeakTable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/ConditionalWeakTable.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/DispatchProxyClassStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/DispatchProxyClassStore.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/PromiseCompletionSource.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/PromiseCompletionSource.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/PromisePal.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/PromisePal.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/RandomCancellationToken.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/RandomCancellationToken.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/TimeSpan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/TimeSpan.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/Trace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/Trace.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/std/bcl/final-states.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/std/bcl/final-states.spec.ts -------------------------------------------------------------------------------- /src/Clients/js/test/web/Contracts/IAlgebra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/web/Contracts/IAlgebra.ts -------------------------------------------------------------------------------- /src/Clients/js/test/web/Contracts/IArithmetic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/web/Contracts/IArithmetic.ts -------------------------------------------------------------------------------- /src/Clients/js/test/web/Contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/web/Contracts/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/web/Fixtures/AlgebraProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/web/Fixtures/AlgebraProxy.ts -------------------------------------------------------------------------------- /src/Clients/js/test/web/Fixtures/ProxyFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/web/Fixtures/ProxyFactory.ts -------------------------------------------------------------------------------- /src/Clients/js/test/web/Fixtures/ServerUrl.ts: -------------------------------------------------------------------------------- 1 | export const serverUrl = 'ws://127.0.0.1:61234'; 2 | -------------------------------------------------------------------------------- /src/Clients/js/test/web/Fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/web/Fixtures/index.ts -------------------------------------------------------------------------------- /src/Clients/js/test/web/core/ConfigStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/web/core/ConfigStore.test.ts -------------------------------------------------------------------------------- /src/Clients/js/test/web/end-to-end.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/test/web/end-to-end.test.ts -------------------------------------------------------------------------------- /src/Clients/js/tsconfig.common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/tsconfig.common.json -------------------------------------------------------------------------------- /src/Clients/js/tsconfig.dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/tsconfig.dotnet.json -------------------------------------------------------------------------------- /src/Clients/js/tsconfig.jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/tsconfig.jasmine.json -------------------------------------------------------------------------------- /src/Clients/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/tsconfig.json -------------------------------------------------------------------------------- /src/Clients/js/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/tsconfig.node.json -------------------------------------------------------------------------------- /src/Clients/js/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/tsconfig.test.json -------------------------------------------------------------------------------- /src/Clients/js/tsconfig.web-js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/tsconfig.web-js.json -------------------------------------------------------------------------------- /src/Clients/js/tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/tsconfig.web.json -------------------------------------------------------------------------------- /src/Clients/js/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/tslint.json -------------------------------------------------------------------------------- /src/Clients/js/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/webpack.common.js -------------------------------------------------------------------------------- /src/Clients/js/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Clients/js/webpack.dev.js -------------------------------------------------------------------------------- /src/CoreIpc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/CoreIpc.sln -------------------------------------------------------------------------------- /src/CoreIpc.sln.startup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/CoreIpc.sln.startup.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/IpcSample.ConsoleClient/App1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleClient/App1.config -------------------------------------------------------------------------------- /src/IpcSample.ConsoleClient/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleClient/Client.cs -------------------------------------------------------------------------------- /src/IpcSample.ConsoleClient/IpcSample.ConsoleClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleClient/IpcSample.ConsoleClient.csproj -------------------------------------------------------------------------------- /src/IpcSample.ConsoleClient/TcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleClient/TcpClient.cs -------------------------------------------------------------------------------- /src/IpcSample.ConsoleClient/WebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleClient/WebSocketClient.cs -------------------------------------------------------------------------------- /src/IpcSample.ConsoleClient/app1.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleClient/app1.manifest -------------------------------------------------------------------------------- /src/IpcSample.ConsoleServer/App1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleServer/App1.config -------------------------------------------------------------------------------- /src/IpcSample.ConsoleServer/IpcSample.ConsoleServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleServer/IpcSample.ConsoleServer.csproj -------------------------------------------------------------------------------- /src/IpcSample.ConsoleServer/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleServer/Server.cs -------------------------------------------------------------------------------- /src/IpcSample.ConsoleServer/TcpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleServer/TcpServer.cs -------------------------------------------------------------------------------- /src/IpcSample.ConsoleServer/WebSocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleServer/WebSocketServer.cs -------------------------------------------------------------------------------- /src/IpcSample.ConsoleServer/app1.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/IpcSample.ConsoleServer/app1.manifest -------------------------------------------------------------------------------- /src/Playground/Contracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Playground/Contracts.cs -------------------------------------------------------------------------------- /src/Playground/Impl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Playground/Impl.cs -------------------------------------------------------------------------------- /src/Playground/Playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Playground/Playground.csproj -------------------------------------------------------------------------------- /src/Playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/Playground/Program.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.Abstractions/ServerTransportBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.Abstractions/ServerTransportBase.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.Abstractions/UiPath.CoreIpc.Extensions.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.Abstractions/UiPath.CoreIpc.Extensions.Abstractions.csproj -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/BidiHttpServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/BidiHttpServerTransport.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Constants.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using UiPath.Ipc.Extensions.Abstractions; 2 | -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/CallerArgumentExpressionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/CallerArgumentExpressionAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/CancellationTokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/CancellationTokenExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/CompilerFeatureRequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/CompilerFeatureRequiredAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/IsExternalInit.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/MemberNotNullAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/MemberNotNullAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/MemberNotNullWhenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/MemberNotNullWhenAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/NotNullIfNotNullAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/NotNullIfNotNullAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/NotNullWhenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/NotNullWhenAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/RequiredMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/RequiredMemberAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/SetsRequiredMembersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/SetsRequiredMembersAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/StreamExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/System_Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/System_Index.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/TcpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/Polyfills/TcpClientExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Extensions.BidirectionalHttp/UiPath.CoreIpc.Extensions.BidirectionalHttp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Extensions.BidirectionalHttp/UiPath.CoreIpc.Extensions.BidirectionalHttp.csproj -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/ComputingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/ComputingTests.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/ComputingTestsOverNamedPipes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/ComputingTestsOverNamedPipes.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/ComputingTestsOverTcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/ComputingTestsOverTcp.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/ComputingTestsOverWebSockets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/ComputingTestsOverWebSockets.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Config/OverrideConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Config/OverrideConfigAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/DiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/DiExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/HttpSysWebSocketsListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/HttpSysWebSocketsListener.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/IpcAutoDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/IpcAutoDataAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/IpcHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/IpcHelpers.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/Names.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/Names.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/NetworkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/NetworkHelper.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/ShouldlyHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/ShouldlyHelpers.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/StreamBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/StreamBase.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/StreamExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/TestRunId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/TestRunId.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/Timeouts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/Timeouts.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/TracedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/TracedStream.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Helpers/WebSocketContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Helpers/WebSocketContext.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/NamedPipeSmokeTests.NetCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/NamedPipeSmokeTests.NetCore.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/NamedPipeSmokeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/NamedPipeSmokeTests.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Polyfills/CallerArgumentExpressionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Polyfills/CallerArgumentExpressionAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Polyfills/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Polyfills/IsExternalInit.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Polyfills/System_Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Polyfills/System_Index.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Program.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/RobotTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/RobotTests.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/RobotTestsOverNamedPipes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/RobotTestsOverNamedPipes.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Services/ArithmeticCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Services/ArithmeticCallback.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Services/ComputingCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Services/ComputingCallback.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Services/ComputingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Services/ComputingService.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Services/IComputingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Services/IComputingService.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Services/ISystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Services/ISystemService.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Services/Robot/Contracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Services/Robot/Contracts.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Services/Robot/Impl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Services/Robot/Impl.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Services/Robot/Pals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Services/Robot/Pals.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Services/SystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Services/SystemService.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/SpyTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/SpyTestBase.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/SyncOverAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/SyncOverAsyncTests.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/SystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/SystemTests.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/SystemTestsOverNamedPipes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/SystemTestsOverNamedPipes.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/SystemTestsOverTcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/SystemTestsOverTcp.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/SystemTestsOverWebSockets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/SystemTestsOverWebSockets.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/TestBase.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/UiPath.CoreIpc.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/UiPath.CoreIpc.Tests.csproj -------------------------------------------------------------------------------- /src/UiPath.CoreIpc.Tests/Xunit/CustomTestFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc.Tests/Xunit/CustomTestFramework.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Client/CallInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Client/CallInfo.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Client/IpcProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Client/IpcProxy.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Client/ServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Client/ServiceClient.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Config/ClientTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Config/ClientTransport.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Config/ContractCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Config/ContractCollection.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Config/IClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Config/IClientConfig.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Config/IClientState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Config/IClientState.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Config/IpcBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Config/IpcBase.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Config/IpcClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Config/IpcClient.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Config/IpcServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Config/IpcServer.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Config/ServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Config/ServerTransport.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Connection.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/GlobalUsings.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Helpers/CancellationTokenSourcePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Helpers/CancellationTokenSourcePool.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Helpers/DefaultsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Helpers/DefaultsExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Helpers/FastAsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Helpers/FastAsyncLock.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Helpers/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Helpers/Helpers.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Helpers/NestedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Helpers/NestedStream.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Helpers/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Helpers/Result.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Helpers/Router.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Helpers/Router.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Helpers/TaskCompletionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Helpers/TaskCompletionPool.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Logging/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Logging/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/CallerArgumentExpressionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/CallerArgumentExpressionAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/CancellationTokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/CancellationTokenExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/CompilerFeatureRequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/CompilerFeatureRequiredAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/IsExternalInit.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/MemberNotNullAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/MemberNotNullAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/MemberNotNullWhenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/MemberNotNullWhenAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/NotNullIfNotNullAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/NotNullIfNotNullAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/NotNullWhenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/NotNullWhenAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/RequiredMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/RequiredMemberAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/SetsRequiredMembersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/SetsRequiredMembersAttribute.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/System_Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/System_Index.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Polyfills/TcpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Polyfills/TcpClientExtensions.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Server/ContractSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Server/ContractSettings.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Server/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Server/IClient.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Server/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Server/Server.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Server/ServerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Server/ServerConnection.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Transport/NamedPipe/NamedPipeClientTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Transport/NamedPipe/NamedPipeClientTransport.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Transport/NamedPipe/NamedPipeServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Transport/NamedPipe/NamedPipeServerTransport.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Transport/Tcp/TcpClientTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Transport/Tcp/TcpClientTransport.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Transport/Tcp/TcpServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Transport/Tcp/TcpServerTransport.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Transport/WebSocket/WebSocketClientTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Transport/WebSocket/WebSocketClientTransport.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Transport/WebSocket/WebSocketServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Transport/WebSocket/WebSocketServerTransport.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Transport/WebSocket/WebSocketStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Transport/WebSocket/WebSocketStream.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/UiPath.CoreIpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/UiPath.CoreIpc.csproj -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Wire/Dtos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Wire/Dtos.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Wire/EndpointNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Wire/EndpointNotFoundException.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/Wire/IpcJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/Wire/IpcJsonSerializer.cs -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/report/UiPath.Ipc.net461.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/report/UiPath.Ipc.net461.received.txt -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/report/UiPath.Ipc.net6.0-windows.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/report/UiPath.Ipc.net6.0-windows.received.txt -------------------------------------------------------------------------------- /src/UiPath.CoreIpc/report/generate-report.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UiPath/coreipc/HEAD/src/UiPath.CoreIpc/report/generate-report.bat --------------------------------------------------------------------------------