次の方法で共有


LoggingLevelSettings.GreaterThanOrEqual Operator

Definition

Tests if left >= right. Specifically, if all settings in the left operand are equal to or 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.

Applies to