QueryBuilder.FilterByMinPropertyValue Method

Definition

Modifies the query, so that it returns only objects that have a property value greater than or equal to a minPropertyValue threshold.

public:
 virtual void FilterByMinPropertyValue(System::String ^ propertyName, System::Object ^ minPropertyValue, Microsoft::PowerShell::Cmdletization::BehaviorOnNoMatch behaviorOnNoMatch);
public:
 virtual void FilterByMinPropertyValue(Platform::String ^ propertyName, Platform::Object ^ minPropertyValue, Microsoft::PowerShell::Cmdletization::BehaviorOnNoMatch behaviorOnNoMatch);
 virtual void FilterByMinPropertyValue(std::wstring const & propertyName, winrt::Windows::Foundation::IInspectable const & minPropertyValue, Microsoft::PowerShell::Cmdletization::BehaviorOnNoMatch behaviorOnNoMatch);
public virtual void FilterByMinPropertyValue (string propertyName, object minPropertyValue, Microsoft.PowerShell.Cmdletization.BehaviorOnNoMatch behaviorOnNoMatch);
abstract member FilterByMinPropertyValue : string * obj * Microsoft.PowerShell.Cmdletization.BehaviorOnNoMatch -> unit
override this.FilterByMinPropertyValue : string * obj * Microsoft.PowerShell.Cmdletization.BehaviorOnNoMatch -> unit
Public Overridable Sub FilterByMinPropertyValue (propertyName As String, minPropertyValue As Object, behaviorOnNoMatch As BehaviorOnNoMatch)

Parameters

propertyName
String

Property name to query on.

minPropertyValue
Object

Minimum property value.

behaviorOnNoMatch
BehaviorOnNoMatch

Describes how to handle filters that didn't match any objects

Applies to