Akka.Persistence.Serialization.SnapshotSerializer.GetTransportInformation C# (CSharp) Method

GetTransportInformation() private method

private GetTransportInformation ( ) : Akka.Serialization.Information
return Akka.Serialization.Information
        private Information GetTransportInformation()
        {
            var address = system.Provider.DefaultAddress;
            return !string.IsNullOrEmpty(address.Host)
                ? new Information { Address = address, System = system }
                : null;
        }
    }