IsObjectInScope(Guid) Method
See Also 
SourceCode.Framework Namespace > PersistableObject Class > IsObjectInScope Method : IsObjectInScope(Guid) Method



itemGuid
Original identifier used for lookup.

Glossary Item Box

When a cloning context exists, a lookup will be done to determine if the item is in scope.

Syntax

Visual Basic (Declaration) 
Protected Overloads Function IsObjectInScope( _
   ByVal itemGuid As Guid _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As PersistableObject
Dim itemGuid As Guid
Dim value As Boolean
 
value = instance.IsObjectInScope(itemGuid)
C# 
protected bool IsObjectInScope( 
   Guid itemGuid
)
C++/CLI 
protected:
bool IsObjectInScope( 
   Guid itemGuid
) 

Parameters

itemGuid
Original identifier used for lookup.

Return Value

Returns true if the item is in scope.

Remarks

The item identifier will be used to determine if the object is in scope.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also