/// <summary>
 /// Retrieves the Option Value assoicated with the Option and Reservation Scope from the Default options
 /// </summary>
 /// <param name="OptionId">The identifier for the option value to retrieve</param>
 /// <returns>A <see cref="DhcpServerOptionValue"/>.</returns>
 public DhcpServerOptionValue GetOptionValue(int OptionId)
 {
     return(DhcpServerOptionValue.GetScopeReservationDefaultOptionValue(this, OptionId));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Retrieves the Option Value associated with the Option and Scope Reservation from the Default options
 /// </summary>
 /// <param name="optionId">The identifier for the option value to retrieve</param>
 /// <returns>A <see cref="IDhcpServerOptionValue"/>.</returns>
 public IDhcpServerOptionValue GetDefaultOptionValue(DhcpServerOptionIds optionId)
 => DhcpServerOptionValue.GetScopeReservationDefaultOptionValue(Reservation, (int)optionId);