In This Article

IUsingDirective Interface

Provides the base requirements of an using directive.

public interface IUsingDirective

Properties

IsGlobal

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

bool IsGlobal { get; }

Property Value

bool

IsStatic

Indicates whether this using directive is flagged as static.

bool IsStatic { get; }

Property Value

bool

Name

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

IQualifiedName Name { get; }

Property Value

IQualifiedName

Extension Methods