Class CodeCatchClause
  
  
  
  
    Inheritance
    
    
    CodeCatchClause
   
  
  
  
  Syntax
  
    public sealed class CodeCatchClause : CodeElement
   
  Constructors
  
  
  
  
  CodeCatchClause(String, CodeTypeReference, IEnumerable<CodeStatement>)
  
  
  Declaration
  
    public CodeCatchClause(string localName, CodeTypeReference catchExceptionType, IEnumerable<CodeStatement> statements)
   
  Parameters
  
  Properties
  
  
  
  
  CatchExceptionType
  
  
  Declaration
  
    public CodeTypeReference CatchExceptionType { get; }
   
  Property Value
  
  
  
  
  Children
  
  
  Declaration
  
    public override IEnumerable<CodeElement> Children { get; }
   
  Property Value
  
  Overrides
  
  
  
  
  LocalName
  
  
  Declaration
  
    public string LocalName { get; }
   
  Property Value
  
  
  
  
  Statements
  
  
  Declaration
  
    public List<CodeStatement> Statements { get; }
   
  Property Value
  
  Methods
  
  
  
  
  EmitInner(CodeEmitter)
  
  
  Declaration
  
    protected override void EmitInner(CodeEmitter emitter)
   
  Parameters
  
  Overrides
  
  Extension Methods