AK.F1.Timing.UI.Results.PlayProxiedSessionResult.PlayProxiedSessionResult C# (CSharp) Method

PlayProxiedSessionResult() public method

Initialises a new instance of the PlayProxiedSessionResult class.
/// Thrown when is . ///
public PlayProxiedSessionResult ( IPAddress address ) : System.Net
address System.Net.IPAddress The proxy address>.
return System.Net
        public PlayProxiedSessionResult(IPAddress address)
        {
            Guard.NotNull(address, "address");

            Address = address;
        }