The FindMVEntries method is a static method that retrieves the metaverse entries with the specified System.Int64 attribute value.
Namespace: Microsoft.MetadirectoryServices
Assembly: Microsoft.MetadirectoryServicesEx (in microsoft.metadirectoryservicesex.dll)

Usage

Visual Basic
Dim attributeName As String
Dim value As Long
Dim returnValue As MVEntry()

returnValue = Utils.FindMVEntries(attributeName, value)

Syntax

Visual Basic
Public Shared Function FindMVEntries ( _
		attributeName As String, _
		value As Long _
) As MVEntry()
C#
public static MVEntry[] FindMVEntries (
		string attributeName,
		long value
)
C++
public:
static array<MVEntry^>^ FindMVEntries (
		String^ attributeName, 
		long long value
)
J#
public static MVEntry[] FindMVEntries (
		String attributeName, 
		long value
)
JScript
public static function FindMVEntries (
		attributeName : String, 
		value : long
) : MVEntry[]

Parameters

attributeName

Contains the name of the metaverse attribute to retrieve.

value

Contains an System.Int64 value that the attribute identified by attributeName must contain.

Return Value

Returns an array of MVEntry objects that represent the metaverse entries found in the search.

Exceptions

Exception type Condition
System.ArgumentNullException

The attributeName or value parameter is null.

System.InvalidOperationException

The value represented by the value parameter cannot be converted to the data type of the attribute identified by attributeName.

Remarks

This method will throw an System.InvalidOperationException exception and the management agent run profile will stop and throw the stopped-extension-dll-exception if called from the following methods.

For more information about the stopped-extension-dll-exception, see WMI Provider Return Strings.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Target Platforms

See Also