Called to determine whether a new connector space object should be projected to a new metaverse object when the connector space object does not join to an existing metaverse object.
Namespace: Microsoft.MetadirectoryServices
Assembly: Microsoft.MetadirectoryServicesEx (in microsoft.metadirectoryservicesex.dll)

Usage

Visual Basic
Dim instance As IMASynchronization
Dim csentry As CSEntry
Dim MVObjectType As String
Dim returnValue As Boolean

returnValue = instance.ShouldProjectToMV(csentry, MVObjectType)

Syntax

Visual Basic
Function ShouldProjectToMV ( _
		csentry As CSEntry, _
		<OutAttribute> ByRef MVObjectType As String _
) As Boolean
C#
bool ShouldProjectToMV (
		CSEntry csentry,
		out string MVObjectType
)
C++
bool ShouldProjectToMV (
		CSEntry^ csentry, 
		[OutAttribute] String^% MVObjectType
)
J#
boolean ShouldProjectToMV (
		CSEntry csentry, 
		/** @attribute OutAttribute() */ /** @ref */ String MVObjectType
)
JScript

Parameters

csentry

Contains a CSEntry object that represents the new connector space entry.

MVObjectType

A System.String object that, on output, receives the name of the metaverse class to which the connector space entry should be projected.

Return Value

Returns true if the connector space entry should be projected. The MVObjectType parameter receives the name of the metaverse class to which the connector space entry should be projected. Returns false if the connector space entry should not be projected.

Exceptions

Exception type Condition
EntryPointNotImplementedException

The rules extension does not implement this method.

UnexpectedDataException

The method received unexpected data.

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