Show / Hide Table of Contents

Class GlobalExpressionConfigStore

A singleton object which holds the global configuration for C# expression evaluation.

Inheritance
System.Object
GlobalExpressionConfigStore
Implements
IConfiguresCSharpExpressionGlobals
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 Source

GlobalAssemblyReferences

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.

| Improve this Doc View Source

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.

Implements

IConfiguresCSharpExpressionGlobals
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX