Beispiel #1
0
 public Device(
      Boolean _dhcp_
     ,Boolean _enabled_
     ,Boolean _allowStorage_
     ,Boolean _acceptKOPR_
     ,Boolean _allowRetrieve_
     ,Boolean _allowQuery_
     ,Boolean _allowAutoRoute_
     ,Int16 _throttleMaxConnections_
     ,DateTime _lastAccessedTime_
     ,DeviceTypeEnum _deviceTypeEnum_
     ,ServerEntityKey _serverPartitionKey_
     ,String _aeTitle_
     ,Int32 _port_
     ,String _description_
     ,String _ipAddress_
     ):base("Device")
 {
     Dhcp = _dhcp_;
     Enabled = _enabled_;
     AllowStorage = _allowStorage_;
     AcceptKOPR = _acceptKOPR_;
     AllowRetrieve = _allowRetrieve_;
     AllowQuery = _allowQuery_;
     AllowAutoRoute = _allowAutoRoute_;
     ThrottleMaxConnections = _throttleMaxConnections_;
     LastAccessedTime = _lastAccessedTime_;
     DeviceTypeEnum = _deviceTypeEnum_;
     ServerPartitionKey = _serverPartitionKey_;
     AeTitle = _aeTitle_;
     Port = _port_;
     Description = _description_;
     IpAddress = _ipAddress_;
 }
Beispiel #2
0
 public Device(
     Boolean _dhcp_
     , Boolean _enabled_
     , Boolean _allowStorage_
     , Boolean _acceptKOPR_
     , Boolean _allowRetrieve_
     , Boolean _allowQuery_
     , Boolean _allowAutoRoute_
     , Int16 _throttleMaxConnections_
     , DateTime _lastAccessedTime_
     , DeviceTypeEnum _deviceTypeEnum_
     , ServerEntityKey _serverPartitionKey_
     , String _aeTitle_
     , Int32 _port_
     , String _description_
     , String _ipAddress_
     ) : base("Device")
 {
     Dhcp                   = _dhcp_;
     Enabled                = _enabled_;
     AllowStorage           = _allowStorage_;
     AcceptKOPR             = _acceptKOPR_;
     AllowRetrieve          = _allowRetrieve_;
     AllowQuery             = _allowQuery_;
     AllowAutoRoute         = _allowAutoRoute_;
     ThrottleMaxConnections = _throttleMaxConnections_;
     LastAccessedTime       = _lastAccessedTime_;
     DeviceTypeEnum         = _deviceTypeEnum_;
     ServerPartitionKey     = _serverPartitionKey_;
     AeTitle                = _aeTitle_;
     Port                   = _port_;
     Description            = _description_;
     IpAddress              = _ipAddress_;
 }