Info
| Version: | 1.2.7 | 
| Author(s): | Jordan Duerksen | 
| Last Update: | Tuesday, May 30, 2017 | 
| .NET Fiddle: | Create the first Fiddle | 
| Project Url: | https://github.com/mode51/Tungsten | 
| NuGet Url: | https://www.nuget.org/packages/Tungsten.Net.RPC | 
Install
Install-Package Tungsten.Net.RPC
                        dotnet add package Tungsten.Net.RPC
                        paket add Tungsten.Net.RPC
                        
                                Tungsten.Net.RPC Download (Unzip the "nupkg" after downloading)
                            
                        Dependencies
                                         .NETFramework 4.5 
                                        
                    - Tungsten(>= 1.2.5)
 - Tungsten.Net(>= 1.2.5.3)
 - Newtonsoft.Json(>= 10.0.2)
 
- NETStandard.Library(>= 1.6.1)
 - Tungsten(>= 1.2.5)
 - Tungsten.Net(>= 1.2.5.3)
 - Newtonsoft.Json(>= 10.0.2)
 
Tags
                
Communications are made over the port you specify. RPC methods on the server are created by attributing classes and methods with the [RPCClass] and [RPCMethod] attributes.
Clients make calls by passing in the method name ("MyNameSpace.MyClass.Method1") and any parameters to the Call method. The result of this call is an RPCHandle which can be used to wait for a response (WaitForResponse and WaitForResponse<TResponseType>).