Nova.CodeDOM Namespace |
Class | Description | |
---|---|---|
AccessorDecl | ||
AccessorDeclWithValue | ||
Add |
Adds one Expression to another.
| |
AddAssign |
Adds one Expression to another, and assigns the result to the left Expression.
The left Expression must be an assignable object ("lvalue").
| |
AdderDecl |
Represents a special type of method used to add to an event.
| |
AddressOf |
Takes the address of a fixed variable in an unsafe context.
| |
Alias | ||
AliasRef |
Represents a reference to an Alias, which can in turn refer to a NamespaceRef
or a TypeRef (or an UnresolvedRef).
| |
And |
Performs a conditional (logical) 'and' of two boolean Expressions.
| |
Annotation |
The common base class of all code annotations, including user comments (derived from CommentBase),
code attributes (Attribute), compiler directives (derived from CompilerDirective), and generated
messages (derived from Message).
| |
AnonymousMethod |
Represents an un-named method that can be assigned to a delegate.
| |
AnonymousMethodBase |
The common base class of LambdaExpression and AnonymousMethod.
| |
AnonymousMethodRef | ||
AnonymousType |
Declares a "nameless" class. Declared only implicitly by NewObject.
| |
AnonymousTypeRef |
Represents a reference to an anonymous type (a type that is determined at compile-time).
| |
ApplicationContext |
Manages all assemblies loaded into an AppDomain.
| |
ArgList |
Creates a variable list of arguments (RuntimeArgumentHandle) for use by ArgIterator.
This is an undocumented C# operator.
| |
ArgListParameterDecl |
Represents the declaration of an (undocumented) '__arglist' parameter.
| |
ArgumentsOperator |
The common base class of all operators with a variable list of arguments (Call, Index,
NewOperator, StackAlloc, ArgList, RefValue).
| |
As |
Converts an Expression to the specified type, returning null if the conversion can't be done.
| |
AssemblyReference |
Represents a project reference to an external assembly.
| |
Assignment |
Assigns the right Expression to the left Expression.
Also the common base class of all compound assignment operators (AddAssign, BitwiseAndAssign,
BitwiseOrAssign, BitwiseXorAssign, DivideAssign, LeftShiftAssign,
ModAssign, MultiplyAssign, RightShiftAssign, SubtractAssign).
| |
Attribute |
Represents metadata associated with a CodeObject.
| |
AttributeTargetHelpers |
Static helper methods and extension methods for the AttributeTarget enum.
| |
Await |
Indicates that an expression should be executed asynchronously.
| |
BaseInitializer |
Represents a call to a constructor in the base class (constructor initializer).
| |
BaseListTypeDecl |
The common base class of all user-defined types with optionally declared base types (ClassDecl,
StructDecl, InterfaceDecl, and EnumDecl).
| |
BaseRef |
Represents a reference to the base class of the current object instance.
| |
BinaryArithmeticOperator | ||
BinaryBitwiseOperator | ||
BinaryBooleanOperator |
The common base class of all binary operators that evaluate to boolean values (RelationalOperator
[common base of Equal, NotEqual, GreaterThan, LessThan,
GreaterThanEqual, LessThanEqual], And, Or, Is).
| |
BinaryOperator |
The common base class of all binary operators (BinaryArithmeticOperator, BinaryBitwiseOperator,
BinaryBooleanOperator, BinaryShiftOperator, Assignment, As, Dot,
IfNullThen, Lookup, PointerMember).
| |
BinaryShiftOperator |
The common base class of LeftShift and RightShift.
| |
BitwiseAnd |
Performs a boolean AND operation on two Expressions.
| |
BitwiseAndAssign |
Performs a boolean AND operation on two Expressions, and assigns the result to the left Expression.
The left Expression must be an assignable object ("lvalue").
| |
BitwiseOr |
Performs a boolean OR operation on two Expressions.
| |
BitwiseOrAssign |
Performs a boolean OR operation on two Expressions, and assigns the result to the left Expression.
The left Expression must be an assignable object ("lvalue").
| |
BitwiseXor |
Performs a boolean XOR operation on two Expressions.
| |
BitwiseXorAssign |
Performs a boolean XOR operation on two Expressions, and assigns the result to the left Expression.
The left Expression must be an assignable object ("lvalue").
| |
Block |
Represents the body of a BlockStatement or AnonymousMethodBase (containing
a sequence of 0 or more CodeObjects).
| |
BlockDecl |
Represents a stand-alone block of code restricted to a local scope (surrounded by braces).
| |
BlockStatement |
The common base class of all Statements that can have a Block as a body (NamespaceDecl,
TypeDecl, MethodDeclBase, PropertyDeclBase, BlockDecl, IfBase,
Else, Switch, SwitchItem, For, ForEach, While,
Try, Catch, Finally, Using, Lock, CheckedBlock,
UncheckedBlock, Unsafe, Fixed).
| |
BooleanOperatorDecl |
Represents a user-overloaded 'true' or 'false' operator.
| |
Break |
Causes execution of the active loop or switch/case block to terminate.
| |
Call |
Represents a call to a Method or a Delegate, including any arguments.
| |
Case |
Used as a child of a Switch. Includes a constant expression plus a body (a statement or block).
| |
Cast |
The Cast operator casts an Expression to the specified Type.
| |
Catch |
Has an optional Expression or LocalDecl (which must evaluate to an Exception
type), plus a body that is executed if an exception of the specified type is caught. The Expression
may be omitted (null), in which case all exceptions are caught.
| |
Checked |
Explicitly turns ON overflow checking (exceptions) for an Expression.
| |
CheckedBlock |
Contains a body of code for which overflow checking is explicitly turned on.
| |
CheckedOperator | ||
ChildListT |
Represents a collection of child CodeObjects of a particular type.
Sets the Parent reference of each child object added to the collection.
| |
ChildListHelpers |
Extension methods for ChildList - extension methods are used in these cases so that the
collection itself can be checked for being null inside the call.
| |
ClassConstraint |
Constrains the type that a TypeParameter can represent to a reference type.
| |
ClassDecl |
Declares a class, which includes a name plus a body, along with various optional modifiers.
| |
CodeAnnotation |
Represents a 'listed' code Annotation and its location (Project and CodeUnit).
Listed annotations include all Messages (error, warning, suggestion, etc) and also special Comments.
| |
CodeObject |
The common base class of all code objects.
| |
CodeUnit |
Declares a unit of independent code that belongs to the root-level namespace (also known as a "compilation unit").
Usually is the contents of a source file, but it can optionally be in-memory only.
A CodeUnit is essentially a NamespaceDecl of the global namespace.
| |
Comment |
Represents user comments, and may either be independent or associated with another CodeObject.
| |
CommentBase |
The common base class of all comment classes (Comment and DocComment).
| |
CompilerDirective |
The common base class of all compiler directives (ConditionalDirective, MessageDirective,
SymbolDirective, PragmaDirective, LineDirective).
| |
Complement |
Performs a one's complement (toggles all bits) on an Expression.
| |
COMReference |
Represents a project reference to a COM object.
| |
Conditional |
Represents a conditional if/then/else (ternary) expression.
| |
ConditionalDirective | ||
ConditionalDirectiveBase | ||
ConditionalExpressionDirective |
The common base class of IfDirective and ElIfDirective.
| |
ConstraintClause |
Represents one or more contraints on a type parameter.
| |
ConstructorDecl |
Represents a special method used to initialize an instance of a ClassDecl or StructDecl.
If a constructor is static, it can't have any parameters, and can't have any other modifiers
except extern (in which case it has no body) or unsafe.
| |
ConstructorInitializer |
The common base class of BaseInitializer and ThisInitializer.
| |
ConstructorRef | ||
Continue |
Causes execution to jump back to the top of the active loop.
| |
ConversionOperatorDecl |
Represents a user-defined conversion operator.
| |
Deconstruction |
Represents a group of local variable declarations that are initialized from a tuple.
| |
DeconstructionExpr |
The DeconstructionExpr operator is used to deconstruct a tuple, assigning its members to
variables, properties, etc (any l-value).
| |
Decrement |
Decrements an Expression, which should evaluate to a VariableRef (or a property or indexer access).
| |
Default |
Used as a child of a Switch. Includes a body (a statement or block).
| |
DefaultValue |
Returns the default value for the specified type.
| |
DefineSymbol |
Provides for the definition of a "pre-processor" symbol - may only appear at the very top of a CodeUnit (file)!
| |
DelegateDecl |
Declares a type that represents a reference to a method.
| |
DestructorDecl |
Represents a named Block of code used to destruct the instance of a class.
It has no modifiers or parameters, can't be inherited or overloaded, and can't be called
directly. Only classes can have them, and they can only have one.
| |
DirectiveSymbolRef |
Represents a reference to a pre-processor directive symbol.
| |
DiscardDecl |
Represents a discard variable declaration.
| |
DiscardRef |
Represents a reference to the global unassigned, write-only, typeless, "discard" variable.
| |
Divide |
Divides one Expression by another.
| |
DivideAssign |
Divides one Expression by another, and assigns the result to the left Expression.
The left Expression must be an assignable object ("lvalue").
| |
DocB |
Represents a section of bold text in a documentation comment.
| |
DocC |
Represents a fragment of code in a documentation comment.
| |
DocCDATA |
Represents a section of character data in a documentation comment.
| |
DocCode |
Represents a block of code in a documentation comment.
| |
DocCodeRefBase |
The common base class of all documentation comment tags that have a 'cref' attribute (DocSee,
DocSeeAlso, DocException, DocPermission).
| |
DocComment |
Represents user documentation of code, and is also the common base class of DocText,
DocCodeRefBase, DocNameBase, DocB, DocC, DocCode,
DocCDATA, DocExample, DocI, DocInclude, DocPara,
DocRemarks, DocSummary, DocTag, DocValue, DocList,
DocListHeader, DocListItem, DocListDescription, DocListTerm.
| |
DocExample |
Documents how to use a code object.
| |
DocException |
Documents that an exception can be thrown by a method, property, event, or indexer.
| |
DocI |
Represents a section of italic text in a documentation comment.
| |
DocInclude |
Allows for documentation comments to be included from a separate file.
| |
DocList |
Represents a list in a documentation comment.
| |
DocListDescription |
Represents the description of a DocListItem in a DocList in a documentation comment.
| |
DocListHeader |
Represents the header of a DocList in a documentation comment.
| |
DocListItem |
Represents an item in a DocList in a documentation comment.
| |
DocListTerm |
Represents the term of a DocListItem in a DocList in a documentation comment.
| |
DocNameBase |
The common base class of all documentation comment tags that have a 'name' attribute (DocParam,
DocParamRef, DocTypeParam, DocTypeParamRef).
| |
DocPara |
Represents a separate paragraph in a documentation comment.
| |
DocParam |
Documents a method or indexer parameter.
| |
DocParamRef |
Embeds a reference to a method or indexer parameter in a documentation comment.
| |
DocPermission |
Documents the access rights of a member.
| |
DocRemarks |
Provides additional comments for a code object.
| |
DocReturns |
Documents the return value of a method.
| |
DocSee |
Embeds a reference to a type or member in a documentation comment.
| |
DocSeeAlso |
Documents a reference to a type or member that should be presented in a "See Also" section.
| |
DocSummary |
Provides a summary comment for a code object.
| |
DocTag |
Represents an unrecognized or orphaned (missing start or end) tag in a documentation comment.
| |
DocText |
Represents plain-text user documentation of code.
| |
DocTypeParam |
Documents a type parameter.
| |
DocTypeParamRef |
Embeds a reference to a type parameter in a documentation comment.
| |
DocValue |
Documents the value of a property.
| |
Dot |
Performs a member lookup (either directly on a namespace or type, or indirectly on the evaluated type
of the expression on the left side).
| |
DotNetCliToolReference |
Represents a reference to a .NET CLI Tool package. (used by VS2017 format project files)
| |
DoWhile |
Represents the "while" portion of a DoWhile loop, and does NOT have
a body. This class works as a child of the While class, which displays as a "do" loop
when IsDoWhile is set to true - it should not be used directly.
| |
DynamicExpressionRef |
Represents a symbolic reference that is part of a dynamically-typed expression (and
therefore is unresolved until runtime).
| |
DynamicTypeRef |
Represents a reference to a 'dynamic' type.
| |
ElIfDirective |
Used for optional compilation of code, must be preceded by an IfDirective or ElIfDirective, and
followed by one of ElIfDirective, ElseDirective, or EndIfDirective.
| |
Else | ||
ElseDirective |
Used for optional compilation of code, must be preceded by an IfDirective or ElIfDirective, and
followed by an EndIfDirective.
| |
ElseIf | ||
EndIfDirective |
Marks the end of an IfDirective.
| |
EndRegionDirective |
Represents the end of a section of code that can be collapsed, and has optional descriptive text.
| |
EnumConstant |
Represents a constant value of a specified enum type, stored in the underlying type of the enum.
| |
EnumDecl |
Declares an enumerated type, and includes a name and a body with a list of identifiers
(with optional assigned values). It can also optionally have modifiers and/or a base type.
| |
EnumMemberDecl |
Represents the declaration of an individual enum member.
Can only be used as a child of MultiEnumMemberDecl, not as a stand-alone declaration.
| |
EnumMemberRef |
Represents a reference to an EnumMemberDecl (a member of an EnumDecl type declaration).
| |
Equal |
The Equal operator checks if the left Expression is equal to the right Expression.
| |
ErrorDirective |
Forces the compiler to emit an error message.
| |
ErrorLoadedAssembly |
Represents an assembly that failed to load.
| |
EventDecl |
Declares a property-like event, with add/remove accessors.
| |
EventRef | ||
Expression |
The common base class of all expressions.
| |
ExpressionTreeRef |
This is a special TypeRef that refers to a ExpressionTDelegate type.
| |
ExternAlias |
Used together with compiler command-line options to create additional root-level namespaces.
| |
ExternAliasRef |
Represents a reference to an ExternAlias namespace statement, or
to the 'global' namespace.
| |
False |
Determines if an expression evaluates to false.
| |
FieldDecl |
Represents a class member variable declaration.
| |
FieldRef | ||
Finally |
Has a body that is ensured to always be executed whenever its parent Try block is exited for any reason.
| |
Fixed |
Fixes moveable variable(s) for the duration of the statment in an unsafe context.
| |
FixedSizeBufferDecl |
Represents a declaration of a fixed-size buffer in a StructDecl in an unsafe context.
| |
For |
Represents a 'for' loop.
| |
ForEach |
Defines an iteration variable and a collection (or array) plus a body (a statement or block) that is
repeatedly executed for each variable in the collection.
| |
FrameworkContext |
Represents a group of loaded assemblies for a particular target framework version, loaded into a particular AppDomain.
| |
FromClause |
Represents a LINQ 'from' clause.
| |
GenericMethodDecl |
Represents a generic method declaration with type parameters.
| |
GetterDecl |
Represents a special type of method used to read the value of a property.
| |
Goto | ||
GotoTargetRef |
The common base class of LabelRef and SwitchItemRef.
| |
GreaterThan |
The GreaterThan operator checks if the left Expression is greater than the right Expression.
| |
GreaterThanEqual |
The GreaterThanEqual operator checks if the left Expression is greater than or equal to the right Expression.
| |
GroupClause |
Represents a LINQ 'group' clause.
| |
If | ||
IfBase | ||
IfDirective |
Marks the beginning of a section of conditionally compiled code.
| |
IfNullThen |
Returns the right Expression if the left Expression is null,
otherwise it returns the left Expression.
| |
In |
Allows a variable being passed as a parameter to be marked as an 'in' parameter.
This is a special pseudo-operator that is only for use in this special case.
| |
Increment |
Increments an Expression, which should evaluate to a VariableRef (or a property or indexer access).
| |
Index |
Represents an index into an array or type with an indexer.
Array indexes must be integral. Indexers may index with any type.
| |
IndexerDecl |
Represents an "indexer" - an indexed property.
| |
IndexerRef |
Represents a reference to an IndexerDecl or a PropertyInfo for an indexer.
| |
Initializer |
Represents the initialization of an array, object, or collection with a list of Expressions.
| |
InterfaceDecl |
Declares an interface, which includes a name plus a body, along with various optional modifiers.
Interfaces define contracts - they have no fields or code.
| |
Is |
Checks if an Expression can be converted to the specified type, returning true if so.
| |
JoinClause |
Represents a LINQ 'join' clause.
| |
Label |
Represents a named entry point that can be targeted by one or more Goto statements.
| |
LabelRef |
Represents a reference to a Label.
| |
LambdaExpression |
Represents an un-named method that can be assigned to a delegate.
It's very similar to an AnonymousMethod, just with newer, simplified syntax, and it
supports implicit types for its parameters.
| |
LeftShift |
Shifts the bits of the left Expression to the LEFT by the number of bits indicated by the right Expression.
| |
LeftShiftAssign |
Shifts the value of the left Expression LEFT by the value of the right Expression, and assigns the
result to the left Expression. The left Expression must be an assignable object ("lvalue").
| |
LessThan |
The LessThan operator checks if the left Expression is less than the right Expression.
| |
LessThanEqual |
The LessThanEqual operator checks if the left Expression is less than or equal to the right Expression.
| |
LetClause |
Represents a LINQ 'let' clause.
| |
LineDirective |
Used to control embedded line number information.
| |
Literal |
Represents a literal value of a particular type (string, int, bool, etc).
| |
LoadedAssembly |
Represents an Assembly that has been loaded into memory.
| |
LocalDecl |
Represents a local variable declaration.
| |
LocalDeclExpr |
Represents a local variable declaration inside certain expressions, also known as pattern-matching (C# 7 feature).
| |
LocalRef |
Represents a reference to a LocalDecl or LocalDeclExpr.
| |
Lock |
Maintains a critical section on the provided object while the body of the statement is executing.
| |
Lookup |
Specifies that an identifier is in the specified namespace - either 'global' or an aliased
root-level namespace name (specified either with a 'using' or extern alias directive).
| |
MakeRef |
Returns a TypedReference object for the specified variable.
This is an undocumented C# operator.
| |
Message |
Represents a generated message associated with a CodeObject (error, warning, suggestion, or hint).
| |
MessageDirective | ||
MethodDecl |
Represents a named Block of code with optional parameters and an optional return value.
Various optional modifiers can also be used (the default is 'private').
| |
MethodDeclBase | ||
MethodRef |
Represents a reference to a MethodDeclBase (common base of MethodDecl,
GenericMethodDecl, ConstructorDecl, DestructorDecl),
AnonymousMethodBase (common base of AnonymousMethod, LambdaExpression),
or MethodDefinition/MethodInfo.
| |
Mod |
Returns the remainder of the division of one Expression by another.
| |
ModAssign |
Gets the remainder of the division of one Expression by another, and assigns it to the left Expression.
The left Expression must be an assignable object ("lvalue").
| |
ModifiersHelpers |
Static helper methods and extension methods for Modifiers.
| |
MonoCecilAssemblyResolver |
Derives from a Mono Cecil BaseAssemblyResolver in order to resolve assemblies on demand
in the scope of a certain Project.
| |
MonoCecilLoadedAssembly |
Represents an AssemblyDefinition that has been loaded into memory using Mono.Cecil.
| |
MultiEnumMemberDecl |
Represents the declaration of the single valid member of an EnumDecl,
which has one or more EnumMemberDecl children. It has no name (its children have names),
and its type is the base type of the parent EnumDecl, or it defaults to int.
MultiEnumMemberDecls are implicitly constants (and therefore also static).
| |
MultiFieldDecl |
Represents a compound field declaration - the declaration of multiple fields of the same type in
a single statement.
| |
MultiFixedSizeBufferDecl |
Represents a compound fixed-size buffer declaration - the declaration of multiple fixed-size buffers of the
same type in a single statement.
| |
MultiLocalDecl |
Represents a compound local variable declaration - the declaration of multiple local variables of
the same type in a single statement.
| |
Multiply |
Multiplies one Expression by another.
| |
MultiplyAssign |
Multiplies one Expression by another, and assigns the result to the left Expression.
The left Expression must be an assignable object ("lvalue").
| |
NamedArgument |
Represents an argument expression associated with a specific parameter of a method (or indexer).
| |
NamedCodeObjectDictionary |
Represents a dictionary of INamedCodeObjects, allowing multiple entries with the same name. Differs from
NamedObjectDictionary in that it can only hold INamedCodeObjects, and NOT metadata
(IMemberDefinition/MemberInfo).
| |
NamedCodeObjectGroup |
Represents a group of named code objects (INamedCodeObjects) with the same name, such
as overloaded methods or other name collisions. Differs from NamedObjectGroup in that it
can only hold INamedCodeObjects, and NOT metadata (IMemberDefinition/MemberInfo).
| |
NamedObjectDictionary |
Represents a dictionary of named code or metadata objects (INamedCodeObjects and/or IMemberDefinitions/MemberInfos),
allowing multiple entries with the same name. Differs from NamedCodeObjectDictionary in that it
can hold metadata (IMemberDefinition/MemberInfo) in addition to INamedCodeObjects.
| |
NamedObjectGroup |
Represents a group of named code or metadata objects (INamedCodeObjects and/or IMemberDefinitions/MemberInfos)
with the same name, such as overloaded methods or other name collisions. Differs from NamedCodeObjectGroup in
that it can hold metadata (IMemberDefinition/MemberInfo) in addition to INamedCodeObjects.
| |
NameOf |
Returns the string name of the specified code object.
| |
Namespace |
Represents a namespace of type declarations and optional child namespaces.
| |
NamespaceDecl |
Declares a namespace plus a body of declarations that belong to it.
| |
NamespaceRef |
Represents a reference to a Namespace.
| |
NamespaceTypeDictionary |
Represents a dictionary of Namespaces and types (TypeDecls and/or TypeDefinitions/Types),
allowing multiple entries with the same name.
| |
NamespaceTypeGroup |
Represents a group of types (TypeDecls and/or TypeDefinitions/Types)
and/or Namespaces, with the same name (the contained objects are of type 'object').
| |
Negative |
Negates an Expression.
| |
NewArray |
The NewArray operator is used to create new array instances.
| |
NewConstraint |
Constrains the type that a TypeParameter can represent to one with a default constructor.
| |
NewObject |
The NewObject operator is used to create new object instances of class, struct, delegate, or anonymous types.
| |
NewOperator | ||
NewTuple |
The NewTuple operator is used to create a new tuple instance.
| |
Not |
Checks if an Expression is false.
| |
NotEqual |
The NotEqual operator checks if the left Expression is NOT equal to the right Expression.
| |
NullSafeDot |
Performs a null-safe member lookup (either directly on a namespace or type, or indirectly on the evaluated type
of the expression on the left side). Has the same behavior as Dot, except that if the left side
evaluates to null at runtime no exception is thrown.
| |
NullSafeIndex |
Represents a null-safe index into an array or type with an indexer.
Array indexes must be integral. Indexers may index with any type.
| |
OpenTypeParameterRef |
Represents a reference to a TypeParameter (or GenericParameter/Type) from outside
the generic type or method declaration that declares it, and exists only temporarily until it is replaced by a concrete type or
TypeParameterRef during the type argument evaluation process.
| |
Operator |
The common base class of all operations (binary, unary, or other).
| |
OperatorDecl |
Represents a user-overloaded operator.
The boolean ('true' and 'false') operators use the derived class BooleanOperatorDecl, and conversion
operators use the derived class ConversionOperatorDecl.
| |
OperatorRef |
Represents a reference to an OperatorDecl or MethodDefinition/MethodInfo for an overloaded operator.
| |
Or |
Performs a conditional (logical) 'or' of two boolean Expressions.
| |
OrderByClause |
Represents a LINQ 'order by' clause.
| |
Ordering |
Represents a child expression of a LINQ OrderByClause.
| |
Out |
Allows a variable being passed as a parameter to be marked as an 'out' parameter.
This is a special pseudo-operator that is only for use in this special case.
| |
OutLocalDeclExpr |
Represents an 'out' local variable declaration that is passed to a method call as an argument expression (C# 7 feature).
| |
PackageReference |
Represents a reference to a NuGet package. (used by VS2017 format project files)
| |
ParameterDecl |
Represents the declaration of a parameter to a method.
| |
ParameterRef |
Represents a reference to a ParameterDecl or a ParameterDefinition/ParameterInfo.
Similar to a LocalRef, but represents a parameter passed to the current method.
| |
PointerIndirection |
Obtains the variable to which a pointer points in an unsafe context.
| |
PointerMember |
Performs a member lookup on a pointer in an unsafe context.
| |
Positive |
Has no effect (exists for convenience only).
| |
PostDecrement |
Decrements an Expression *after* it is evaluated.
Use Decrement instead when possible, because it's more efficient.
| |
PostIncrement |
Increments an Expression *after* it is evaluated.
Use Increment instead when possible, because it's more efficient.
| |
PostUnaryOperator |
The common base class of all postfix unary operators (PostIncrement and PostDecrement).
| |
PragmaChecksumDirective |
Used to manage checksum information for files.
| |
PragmaDirective |
The common base class of all pragma directives (PragmaChecksumDirective, PragmaWarningDirective).
| |
PragmaWarningDirective |
Used to turn warnings on or off.
| |
PreUnaryOperator | ||
Project |
Represents a collection of CodeUnit objects (files) that
are compiled together into some type of target (such as a .DLL or .EXE file).
| |
ProjectConfiguration |
Configuration settings for a Project.
| |
ProjectFileItem |
Represents a file item in a Project file.
| |
ProjectUnhandledData |
Represents unhandled data in a Project file.
| |
ProjectReference |
Represents a project reference to another project in the same solution.
| |
PropertyDecl |
Represents a "property" - a virtual field accessed only by calling get and/or set methods.
| |
PropertyDeclBase | ||
PropertyRef | ||
QueryBodyBase |
The common base class of QueryExpression and QueryContinuation.
| |
QueryBodyClause |
The common base class of all query clauses that can be part of a query base (FromClause, LetClause,
JoinClause, WhereClause, OrderByClause, SelectClause, GroupClause).
| |
QueryClauseBase |
The common base class of all query clauses (QueryBodyClause [common base of FromClause,
LetClause, JoinClause, WhereClause, OrderByClause],
SelectOrGroupClause [common base of SelectClause, GroupClause]).
| |
QueryContinuation |
Represents a continuation of a LINQ query, consisting of 'into' with an identifier,
optional QueryBodyClauses, a SelectOrGroupClause, and an optional QueryContinuation.
| |
QueryExpression |
Represents a LINQ query, consisting of a FromClause with optional
QueryBodyClauses, a SelectOrGroupClause, and an optional QueryContinuation.
| |
Ref |
Allows a variable being passed as a parameter to be marked as a 'ref' parameter.
This is a special pseudo-operator that is only for use in this special case.
| |
Reference | ||
ReflectionLoadedAssembly |
Represents an Assembly that has been loaded into memory using .NET reflection.
| |
RefOutOperator | ||
RefType |
Returns the corresponding Type for the specified TypedReference.
This is an undocumented C# operator.
| |
RefValue |
Returns the value portion of the specified TypedReference, cast to the specified type.
This is an undocumented C# operator.
| |
RegionDirective |
Represents the start of a section of code that can be collapsed, and has optional descriptive text.
| |
RelationalOperator |
The common base class of all relational operators (Equal, NotEqual,
GreaterThan, LessThan, GreaterThanEqual, LessThanEqual).
| |
RemoverDecl |
Represents a special type of method used to remove from an event.
| |
Return |
Indicates that execution should return from the current method, and has an optional Expression
to be evaluated as the return value.
| |
RightShift |
Shifts the bits of the left Expression to the RIGHT by the number of bits indicated by the right Expression.
| |
RightShiftAssign |
Shifts the value of the left Expression RIGHT by the value of the right Expression, and assigns the
result to the left Expression. The left Expression must be an assignable object ("lvalue").
| |
RootNamespace |
Represents the top-level namespace (either a project's global namespace, or an extern alias namespace).
| |
SelectClause |
Represents a LINQ 'select' clause.
| |
SelectOrGroupClause |
The common base class of SelectClause and GroupClause.
| |
SelfRef | ||
SetterDecl |
Represents a special type of method used to write the value of a property.
| |
SingleArgumentOperator | ||
SizeOf |
Returns the size of the specified type.
| |
Solution |
Represents a collection of Project objects that are logically grouped (and compiled) together.
| |
SolutionGlobalSection |
Represents a global-level section of configuration data in a solution file.
| |
SolutionProjectEntry |
Represents a project entry in a Solution file.
| |
SolutionProjectSection |
Represents a project-level section of configuration data in a solution file.
| |
StackAlloc |
Allocates memory from the call stack in an unsafe context.
| |
Statement |
The common base class of all statements (BlockStatement, VariableDecl, UsingDirective,
Break, Continue, Goto, Label, Return, Throw,
YieldStatement, DoWhile, Alias, ExternAlias).
| |
StructConstraint |
Constrains the type that a TypeParameter can represent to a value type.
| |
StructDecl |
Declares a struct, includes a name plus a body, along with various optional modifiers.
Unlike classes, structs are value types.
| |
Subtract |
Subtracts one Expression from another.
| |
SubtractAssign |
Subtracts one Expression from another, and assigns the result to the left Expression.
The left Expression must be an assignable object ("lvalue").
| |
Switch | ||
SwitchItem | ||
SwitchItemRef | ||
SymbolDirective |
The common base class of DefineSymbol and UnDefSymbol.
| |
SymbolicRef |
The common base class of all symbolic references, such as NamespaceRef, TypeRefBase
(common base of TypeRef, MethodRef, UnresolvedRef), VariableRef,
SelfRef, GotoTargetRef, ExternAliasRef, and DirectiveSymbolRef.
| |
SymbolicRefIsSameRefComparer |
Determines if one SymbolicRef is equivalent to another one, meaning they both refer
to the same code object or type.
| |
TempExpr |
Used temporarily during the parsing process for special situations - specifically,
as a temporary holder of compiler directives that need to be returned to a higher level.
| |
ThisInitializer |
Represents a call to another constructor in the same class (constructor initializer).
| |
ThisRef |
Represents a reference to the current object instance.
| |
Throw |
Indicates that an exception should be thrown, and has an expression that should evaluate
to an object of type Exception. If the expression is omitted (null), then any
currently active exception (inside a Catch body) is re-thrown.
| |
ThrowExpr |
Indicates that an exception should be thrown, and has an expression that should evaluate
to an object of type Exception. If the expression is omitted (null), then any
currently active exception (inside a Catch body) is re-thrown.
| |
TokenMessage | ||
True |
Determines if an expression evaluates to true.
| |
Try | ||
TupleRef |
Represents a reference to a Tuple (a C# 7 feature, using the ValueTuple class for the runtime implementation).
| |
TypeConstraint |
Constrains the type that a TypeParameter can represent to the specified type (or a derived type).
The constraining type can be a class type, an interface type, or a type parameter type.
| |
TypeDecl |
The common base class of all user-defined type declarations (ClassDecl, StructDecl,
InterfaceDecl, EnumDecl, and DelegateDecl).
| |
TypeOf |
Returns the system type object for the specified type.
| |
TypeOperator | ||
TypeParameter |
Represents a type parameter of a generic type or method declaration.
| |
TypeParameterConstraint |
The common base class of ClassConstraint, StructConstraint, NewConstraint,
TypeConstraint, and UnmanagedConstraint.
| |
TypeParameterRef |
Represents a reference to a TypeParameter (or GenericParameter/Type) from within
the generic type or method declaration that declares it.
| |
TypeRef |
Represents a reference to an ITypeDecl (TypeDecl, TypeParameter,
Alias) or an external TypeDefinition/Type.
| |
TypeRefBase |
Handles references to generic and/or array types, and is the common base class of TypeRef,
MethodRef (because it can be treated as a delegate type, and can have generic parameters),
and UnresolvedRef (because unresolved symbols can have generic parameters and array ranks).
| |
TypeRefBaseIsSameTypeRefComparer |
Determines if one TypeRefBase is equivalent to another one, meaning they both refer
to the same type.
| |
UnaryOperator |
The common base class of all unary operators (PreUnaryOperator, PostUnaryOperator).
| |
Unchecked |
Explicitly turns OFF overflow checking (exceptions) for an Expression.
| |
UncheckedBlock |
Contains a body of code for which overflow checking is explicitly turned off.
| |
UnDefSymbol |
Allows for removing an existing definition of a "pre-processor" symbol - may only appear at the top of a CodeUnit (file)!
| |
UnmanagedConstraint |
Constrains the type that a TypeParameter can represent to a reference type.
| |
Unrecognized |
Represents a list of one or more unrecognized identifiers or symbols (UnresolvedRefs).
If it's part of a larger expression (as opposed to being a stand-alone expression), then the last entry in the list
will itself be a valid child expression.
| |
UnresolvedRef |
Represents a symbolic reference that hasn't been resolved to a direct reference (includes references that
are unresolved because they are ambiguous, or because the type arguments or method arguments don't match
in number or type).
| |
UnresolvedThisRef |
This is a special class used for explicit interface implementations of indexers, and also
for an explicit reference to an indexer member of a type (these are normally implicit, but explicit
references are legal in doc comments).
| |
Unsafe |
Contains a body of code that is marked as "unsafe".
| |
Using |
Enforces the disposal of an object when it's no longer needed. It accepts either an Expression or a
LocalDecl, and internally wraps this in a try/finally that calls Dispose() on the object (which must
implement the IDisposable interface).
| |
UsingDirective | ||
ValueParameterDecl |
Represents the declaration of an implicit 'value' parameter for a GetterDecl, AdderDecl, or RemoverDecl.
| |
VariableDecl | ||
VariableRef |
The common base class of all variable references (FieldRef, LocalRef, ParameterRef,
EnumMemberRef, PropertyRef, IndexerRef, EventRef).
| |
VarTypeRef |
Represents a reference to an implicit type (one that is determined at compile-time).
Implicit types are represented as 'var', and can currently only be used for LocalDecls or LocalDeclExprs.
They are also used internally (not displayed) for implicitly-typed ParameterDecls of LambdaExpressions.
| |
WarningDirective |
Forces the compiler to emit a warning message.
| |
WhereClause |
Represents a LINQ 'where' clause.
| |
While |
Includes a conditional expression plus a body (a statement or block) that is repeatedly executed
as long as the expression evaluates to true. If IsDoWhile is true, the expression
is evaluated at the bottom of the block ("do-while").
| |
YieldBreak |
Signals the end of an iterator.
| |
YieldReturn |
Yields the current value of an iterator.
| |
YieldStatement |
The common base class of YieldReturn and YieldBreak.
|
Interface | Description | |
---|---|---|
IBlock |
This interface is implemented by all code objects that can have a Block for a body
(subclasses of BlockStatement, AnonymousMethodBase, DocCode).
| |
IExpressionFormat |
This interface is implemented by all code objects that can have a lambda expression as a body
instead of a block.
| |
IFile | ||
IModifiers |
This interface is implemented by all code objects that have Modifiers.
| |
IMultiDeclT |
This interface is implemented by MultiFieldDecl, MultiLocalDecl, MultiEnumMemberDecl, and MultiFixedSizeBufferDecl.
| |
INamedCodeObject |
This interface is implemented by all CodeObjects that have a Name property, and can be referenced symbolically.
| |
INamespace | ||
IParameters |
This interface is implemented by all code objects that have parameters
(MethodDeclBase [MethodDecl, GenericMethodDecl, ConstructorDecl, DestructorDecl],
IndexerDecl, DelegateDecl, AnonymousMethodBase [AnonymousMethod, LambdaExpression]).
| |
ITypeDecl |
This interface is implemented by all code objects that represent type declarations,
which includes TypeDecl, TypeParameter, and Alias.
| |
ITypeParameters |
This interface is implemented by all code objects that have TypeParameters (TypeDecl, GenericMethodDecl).
| |
IVariableDecl |
This interface is implemented by all code objects that represent variable declarations, which includes
VariableDecl (ParameterDecl, LocalDecl, FieldDecl, EnumMemberDecl),
and PropertyDeclBase (PropertyDecl, EventDecl, IndexerDecl).
| |
IVisitor |
This interface allows for use of the Visitor design pattern to traverse a tree of CodeObjects.
|
Enumeration | Description | |
---|---|---|
AnnotationFlags |
Annotation formatting flags.
| |
AttributeTarget |
Valid attribute target types.
| |
CodeObjectFormatFlags |
Formatting flags.
| |
CodeObjectRenderFlags |
Rendering behavior flags (passed through rendering methods).
| |
CommentFlags |
Comment type flags.
| |
LineDirectiveType |
The type of a LineDirective.
| |
LoadOptions |
Load options - used when loading a Solution, Project, or CodeUnit.
| |
LoadStatus |
Used for status callbacks during the load process to monitor progress and update any UI.
| |
MessageSeverity |
The severity of a message.
| |
MessageSource |
The source of a message.
| |
Modifiers |
These modifiers are usable on various code objects to specify access and special behaviors.
| |
OrderingDirection |
The direction of an Ordering.
| |
ParameterModifier |
These modifiers are usable on method parameters to specify special behavior.
Only a single modifier is allowed for each parameter.
| |
PragmaWarningAction |
The action of a PragmaWarningDirective.
| |
ProjectBuildActions |
Enumeration of build actions.
| |
ProjectCopyActions |
Enumeration of copy actions.
| |
ProjectDebugTypes |
Enumeration of debug types.
| |
ProjectErrorReporting |
Enumeration of error reporting types.
| |
ProjectGenerateSerializationTypes |
Enumeration of types of serialization generation.
| |
ProjectLocations | ||
ProjectOutputTypes |
Enumeration of output types.
| |
TypeParameterVariance |
Valid type parameter variance specifiers.
| |
TypeRefBaseTypeFlags |
Flags used to handle pointers, const state, and type formatting.
|