Exemple #1
0
 /// <summary>
 /// Queries the DHCP Server for the specified OptionId from the Default options
 /// </summary>
 /// <param name="optionId">The identifier for the option to retrieve</param>
 /// <returns>A <see cref="IDhcpServerOption"/>.</returns>
 public IDhcpServerOption GetDefaultOption(int optionId)
 => DhcpServerOption.GetDefaultOption(Server, optionId);
Exemple #2
0
 /// <summary>
 /// Queries the DHCP Server for the specified OptionId from the Default options
 /// </summary>
 /// <param name="optionId">The identifier for the option to retrieve</param>
 /// <returns>A <see cref="IDhcpServerOption"/>.</returns>
 public IDhcpServerOption GetDefaultOption(DhcpServerOptionIds optionId)
 => DhcpServerOption.GetDefaultOption(Server, (int)optionId);
Exemple #3
0
 /// <summary>
 /// Queries the DHCP Server for the specified OptionId from the Default options
 /// </summary>
 /// <param name="OptionId">The identifier for the option to retrieve</param>
 /// <returns>A <see cref="DhcpServerOption"/>.</returns>
 public DhcpServerOption GetOption(int OptionId)
 {
     return(DhcpServerOption.GetDefaultOption(this, OptionId));
 }