LoggingLevelSettings.LessThan Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests if left
< right
.
Specifically, if some settings in the right
operand are greater in logging
verbosity than the left
operand.
public:
static bool operator <(Microsoft::VisualStudio::RpcContracts::Logging::LoggingLevelSettings ^ left, Microsoft::VisualStudio::RpcContracts::Logging::LoggingLevelSettings ^ right);
public static bool operator < (Microsoft.VisualStudio.RpcContracts.Logging.LoggingLevelSettings left, Microsoft.VisualStudio.RpcContracts.Logging.LoggingLevelSettings right);
static member ( < ) : Microsoft.VisualStudio.RpcContracts.Logging.LoggingLevelSettings * Microsoft.VisualStudio.RpcContracts.Logging.LoggingLevelSettings -> bool
Public Shared Operator < (left As LoggingLevelSettings, right As LoggingLevelSettings) As Boolean
Parameters
- left
- LoggingLevelSettings
Left operand.
- right
- LoggingLevelSettings
Right operand.
Returns
True if each property in the right
operand is at least as permissive as the
corresponding property in the left
operand and at least one property is more
permissive in the right
operand than the left
operand.