Class Compiler.Outputs
Inheritance
System.Object
    Compiler.Outputs
  Implements
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, System.Text.StringBuilder>>
    System.Collections.IEnumerable
  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: NFX.RelationalModel
Assembly: NFX.dll
Syntax
public sealed class Outputs : IEnumerable<KeyValuePair<string, StringBuilder>>, IEnumerable
  Properties
CurrentOrUnspecified
Returns last output used or Unspecified output
Declaration
public StringBuilder CurrentOrUnspecified { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Text.StringBuilder | 
Item[String]
Declaration
public StringBuilder this[string key] { get; }
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | key | 
Property Value
| Type | Description | 
|---|---|
| System.Text.StringBuilder | 
Methods
GetEnumerator()
Declaration
public IEnumerator<KeyValuePair<string, StringBuilder>> GetEnumerator()
  Returns
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String, System.Text.StringBuilder>> | 
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
  Returns
| Type | Description | 
|---|---|
| System.Collections.IEnumerator | 
Implements
      System.Collections.Generic.IEnumerable<T>
  
  
      System.Collections.IEnumerable