Class GlobalExpressionConfigStore
A singleton object which holds the global configuration for C# expression evaluation.
Inheritance
System.Object
GlobalExpressionConfigStore
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ZptSharp.Expressions.CSharpExpressions
Assembly: ZptSharp.CSharpExpressions.dll
Syntax
public class GlobalExpressionConfigStore : IConfiguresCSharpExpressionGlobals
Properties
| Improve this Doc View SourceGlobalAssemblyReferences
Gets a collection of globally-available assembly references which are added to all C# expressions and which do not need an 'assemblyref' expression in-scope.
Declaration
public ICollection<AssemblyReference> GlobalAssemblyReferences { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<AssemblyReference> | The global assembly references. |
GlobalUsingNamespaces
Gets a collection of globally-available using namespaces which are added to all C# expressions and which do not need an 'using' expression in-scope.
Declaration
public ICollection<UsingNamespace> GlobalUsingNamespaces { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<UsingNamespace> | The global using namespaces. |