public DHCP_SUBNET_INFO_Managed(DHCP_IP_ADDRESS subnetAddress, DHCP_IP_MASK subnetMask, string subnetName, string subnetComment, DHCP_HOST_INFO_Managed primaryHost, DHCP_SUBNET_STATE subnetState) { SubnetAddress = subnetAddress; SubnetMask = subnetMask; SubnetName = subnetName; SubnetComment = subnetComment; PrimaryHost = primaryHost; SubnetState = subnetState; }
public DHCP_CLIENT_INFO_Managed(DHCP_IP_ADDRESS clientIpAddress, DHCP_IP_MASK subnetMask, DHCP_BINARY_DATA_Managed clientHardwareAddress, string clientName, string clientComment, DATE_TIME clientLeaseExpires, DHCP_HOST_INFO_Managed ownerHost) { ClientIpAddress = clientIpAddress; SubnetMask = subnetMask; ClientHardwareAddress = clientHardwareAddress; ClientName = clientName; ClientComment = clientComment; ClientLeaseExpires = clientLeaseExpires; OwnerHost = ownerHost; }
public DHCP_SUBNET_INFO_VQ_Managed(DHCP_IP_ADDRESS subnetAddress, DHCP_IP_MASK subnetMask, string subnetName, string subnetComment, DHCP_HOST_INFO_Managed primaryHost, DHCP_SUBNET_STATE subnetState, uint quarantineOn, uint reserved1, uint reserved2, ulong reserved3, ulong reserved4) { SubnetAddress = subnetAddress; SubnetMask = subnetMask; SubnetName = subnetName; SubnetComment = subnetComment; PrimaryHost = primaryHost; SubnetState = subnetState; QuarantineOn = quarantineOn; Reserved1 = reserved1; Reserved2 = reserved2; Reserved3 = reserved3; Reserved4 = reserved4; }
public DHCP_CLIENT_INFO_VQ_Managed(DHCP_IP_ADDRESS clientIpAddress, DHCP_IP_MASK subnetMask, DHCP_BINARY_DATA_Managed clientHardwareAddress, string clientName, string clientComment, DATE_TIME clientLeaseExpires, DHCP_HOST_INFO_Managed ownerHost, DHCP_CLIENT_TYPE clientType, byte addressState, QuarantineStatus status, DATE_TIME probationEnds, bool quarantineCapable) { ClientIpAddress = clientIpAddress; SubnetMask = subnetMask; ClientHardwareAddress = clientHardwareAddress; ClientName = clientName; ClientComment = clientComment; ClientLeaseExpires = clientLeaseExpires; OwnerHost = ownerHost; ClientType = clientType; AddressState = addressState; Status = status; ProbationEnds = probationEnds; QuarantineCapable = quarantineCapable; }