Click or drag to resize
IGlobalSearchManagerSearchObjectNames Method (IEnumerableInt64, Int32, String)

[This is preliminary documentation and is subject to change.]

Searches a specified objectType, matching provided searchValue, returning an enumerable of Id/Name pairs

Namespace: Netadmin.Management.Common.Search
Assembly: Netadmin.Management.Interfaces (in Netadmin.Management.Interfaces.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
Syntax
IEnumerable<INameable> SearchObjectNames(
	IEnumerable<long> companyIds,
	int objectType,
	string searchValue
)

Parameters

companyIds
Type: System.Collections.GenericIEnumerableInt64

[Missing <param name="companyIds"/> documentation for "M:Netadmin.Management.Common.Search.IGlobalSearchManager.SearchObjectNames(System.Collections.Generic.IEnumerable{System.Int64},System.Int32,System.String)"]

objectType
Type: SystemInt32

[Missing <param name="objectType"/> documentation for "M:Netadmin.Management.Common.Search.IGlobalSearchManager.SearchObjectNames(System.Collections.Generic.IEnumerable{System.Int64},System.Int32,System.String)"]

searchValue
Type: SystemString

[Missing <param name="searchValue"/> documentation for "M:Netadmin.Management.Common.Search.IGlobalSearchManager.SearchObjectNames(System.Collections.Generic.IEnumerable{System.Int64},System.Int32,System.String)"]

Return Value

Type: IEnumerableINameable
At most 100 results of Id/Name pairs for a given objecttype, matching the provided searchvalue
Remarks
In most cases, a generic search is used to match the Name property of an object type to the provided search value. However, specialized searches may exist for certain object types, where a generic search isn't appropriate, and may differ in implementation by only performing StartsWith searches instead of open-ended Like searches.
See Also