LoggingLevelSettings.GreaterThan 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 left
operand are greater in logging
verbosity than the right
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 left
operand is at least as permissive as the
corresponding property in the right
operand and at least one property is more
permissive in the left
operand than the right
operand.