Click or drag to resize
NAPlatformGetDevicesT Method (FuncNADevice, Boolean, Boolean)
NewAer
Thread-safe device query based on type and predicate If you need to know when data in this list changes you need to register a callback on EventHandler 'UpdatedDevice'

Namespace: NewAer.SDK
Assembly: NewAer (in NewAer.dll) Version: 5.1.16.3 (5.1.16.3)
Syntax
public IEnumerable<T> GetDevices<T>(
	Func<NADevice, bool> query = null,
	bool sort = true
)
where T : NADevice

Parameters

query (Optional)
Type: SystemFuncNADevice, Boolean
optional predicate used to query the device list. If no query is supplied, the entire list is returned
sort (Optional)
Type: SystemBoolean
should the populated list be sorted

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:NewAer.SDK.NAPlatform.GetDevices``1(System.Func{NewAer.SDK.NADevice,System.Boolean},System.Boolean)"]

Return Value

Type: IEnumerableT
A list of devices based on type and predicate
See Also