In This Article

IUsingDirective Interface

Provides the base requirements of an using directive.

public interface IUsingDirective

Properties

IsGlobal

Gets whether this using directive is flagged as global (project-wide).

bool IsGlobal { get; }

Property Value

bool:

true if this using directive is flagged as global (project-wide); otherwise, false.

IsStatic

Gets whether this using directive is flagged as static.

bool IsStatic { get; }

Property Value

bool:

true if this using directive is flagged as static; otherwise, false.

Name

Gets the qualified name of the namespace imported by the using directive.

IQualifiedName Name { get; }

Property Value

IQualifiedName:

The qualified name of the namespace imported by the using directive.