次の方法で共有


LoggingLevelSettings.LessThan Operator

Definition

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.

Applies to