DAAP.Service.Service C# (CSharp) Method

Service() public method

public Service ( IPAddress address, ushort port, string name, bool isprotected, string machineId ) : System
address System.Net.IPAddress
port ushort
name string
isprotected bool
machineId string
return System
        public Service(IPAddress address, ushort port, string name, bool isprotected, string machineId)
        {
            this.address = address;
            this.port = port;
            this.name = name;
            this.isprotected = isprotected;
            this.machineId = machineId;
        }