IReference Interface
Members See Also 
SourceCode.Framework Namespace : IReference Interface



Glossary Item Box

Defines a Reference interface. This object represents one reference in the project. Including a reference in a project allows you to use any of the public members contained in the reference. Projects may include references to .NET assemblies and COM objects.

Syntax

Visual Basic (Declaration) 
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsDual)>
Public Interface IReference 
Visual Basic (Usage)Copy Code
Dim instance As IReference
C# 
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IReference 
C++/CLI 
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface class IReference 

Remarks

The properties and methods of the Reference object are used primarily for inspection, since all of the properties are read-only except for CopyLocal. All the properties are set when the reference is added to the project.

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