Microsoft Identity Integration Server 2003 Developer Reference

IMASynchronization.ShouldProjectToMV

The ShouldProjectToMV method is called to determine if 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.
[C#]
public bool ShouldProjectToMV(
  CSEntry csentry,
  out string MVObjectType
);
[Visual Basic .NET]
Public Function ShouldProjectToMV( _
  ByVal csentry As CSEntry, _
  ByRef MVObjectType As String _
) As Boolean
Implements IMASynchronization.ShouldProjectToMV

Parameters

csentry
Contains a CSEntry object that represents the new connector space entry.
MVObjectType
[out] A String object that, on output, receives the name of the metaverse class to which the connector space entry should be projected.

Return Values

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.

Requirements

Product: Microsoft Identity Integration Server 2003
Namespace: Defined in Microsoft.MetadirectoryServices.
Assembly: Requires Microsoft.MetadirectoryServices (in Microsoft.MetadirectoryServices.dll).
.NET Framework: Requires .NET Framework 1.1.

See Also

CSEntry, IMASynchronization