14 types derived from CodeStatement
dotnet-svcutil-lib (14)
FrameworkFork\Microsoft.CodeDom\System\CodeAssignStatement.cs (1)
23
public class CodeAssignStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeAttachEventStatement.cs (1)
23
public class CodeAttachEventStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeCommentStatement.cs (1)
21
public class CodeCommentStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeConditionStatement.cs (1)
23
public class CodeConditionStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeExpressionStatement.cs (1)
24
public class CodeExpressionStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeGotoStatement.cs (1)
21
public class CodeGotoStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeIterationStatement.cs (1)
23
public class CodeIterationStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeLabeledStatement.cs (1)
21
public class CodeLabeledStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeMethodReturnStatement.cs (1)
23
public class CodeMethodReturnStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeRemoveEventStatement.cs (1)
23
public class CodeRemoveEventStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeSnippetStatement.cs (1)
23
public class CodeSnippetStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeThrowExceptionStatement.cs (1)
24
public class CodeThrowExceptionStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeTryCatchFinallyStatement.cs (1)
22
public class CodeTryCatchFinallyStatement :
CodeStatement
FrameworkFork\Microsoft.CodeDom\System\CodeVariableDeclarationStatement.cs (1)
23
public class CodeVariableDeclarationStatement :
CodeStatement
52 references to CodeStatement
dotnet-svcutil-lib (52)
CodeDomFixup\CodeDomVisitors\CodeDomVisitor.cs (4)
423
protected override void Visit(
CodeStatement
statement)
554
else if (obj is
CodeStatement
)
555
Visit((
CodeStatement
)obj);
678
protected virtual void Visit(
CodeStatement
statement)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeDOMProvider.cs (1)
236
public virtual void GenerateCodeFromStatement(
CodeStatement
statement, TextWriter writer, CodeGeneratorOptions options)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (3)
570
void ICodeGenerator.GenerateCodeFromStatement(
CodeStatement
e, TextWriter w, CodeGeneratorOptions o)
1064
protected void GenerateStatement(
CodeStatement
e)
1166
((ICodeGenerator)this).GenerateCodeFromStatement((
CodeStatement
)en.Current, _output.InnerWriter, _options);
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (4)
44
else if (e is
CodeStatement
)
46
ValidateStatement((
CodeStatement
)e);
437
private void ValidateStatement(
CodeStatement
e)
509
ValidateStatement((
CodeStatement
)en.Current);
FrameworkFork\Microsoft.CodeDom\Compiler\ICodeGenerator.cs (1)
72
void GenerateCodeFromStatement(
CodeStatement
e, TextWriter w, CodeGeneratorOptions o);
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (3)
1140
private void GenerateStatement(
CodeStatement
e)
1242
((ICodeGenerator)this).GenerateCodeFromStatement((
CodeStatement
)en.Current, _output.InnerWriter, _options);
4409
void ICodeGenerator.GenerateCodeFromStatement(
CodeStatement
e, TextWriter w, CodeGeneratorOptions o)
FrameworkFork\Microsoft.CodeDom\System\CodeCatchClause.cs (1)
56
public CodeCatchClause(string localName, CodeTypeReference catchExceptionType, params
CodeStatement
[] statements)
FrameworkFork\Microsoft.CodeDom\System\CodeConditionStatement.cs (3)
43
public CodeConditionStatement(CodeExpression condition, params
CodeStatement
[] trueStatements)
55
public CodeConditionStatement(CodeExpression condition,
CodeStatement
[] trueStatements,
CodeStatement
[] falseStatements)
FrameworkFork\Microsoft.CodeDom\System\CodeIterationStatement.cs (7)
25
private
CodeStatement
_initStatement;
27
private
CodeStatement
_incrementStatement;
44
public CodeIterationStatement(
CodeStatement
initStatement, CodeExpression testExpression,
CodeStatement
incrementStatement, params
CodeStatement
[] statements)
58
public
CodeStatement
InitStatement
94
public
CodeStatement
IncrementStatement
FrameworkFork\Microsoft.CodeDom\System\CodeLabeledStatement.cs (3)
24
private
CodeStatement
_statement;
44
public CodeLabeledStatement(string label,
CodeStatement
statement)
68
public
CodeStatement
Statement
FrameworkFork\Microsoft.CodeDom\System\CodeStatementCollection.cs (18)
14
/// A collection that stores <see cref='Microsoft.CodeDom.
CodeStatement
'/> objects.
45
/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeStatementCollection'/> containing any array of <see cref='Microsoft.CodeDom.
CodeStatement
'/> objects.
48
public CodeStatementCollection(
CodeStatement
[] value)
54
/// <para>Represents the entry at the specified index of the <see cref='Microsoft.CodeDom.
CodeStatement
'/>.</para>
56
public
CodeStatement
this[int index]
60
return ((
CodeStatement
)(List[index]));
69
/// <para>Adds a <see cref='Microsoft.CodeDom.
CodeStatement
'/> with the specified value to the
72
public int Add(
CodeStatement
value)
89
public void AddRange(
CodeStatement
[] value)
121
/// <see cref='Microsoft.CodeDom.CodeStatementCollection'/> contains the specified <see cref='Microsoft.CodeDom.
CodeStatement
'/>.</para>
123
public bool Contains(
CodeStatement
value)
132
public void CopyTo(
CodeStatement
[] array, int index)
138
/// <para>Returns the index of a <see cref='Microsoft.CodeDom.
CodeStatement
'/> in
141
public int IndexOf(
CodeStatement
value)
147
/// <para>Inserts a <see cref='Microsoft.CodeDom.
CodeStatement
'/> into the <see cref='Microsoft.CodeDom.CodeStatementCollection'/> at the specified index.</para>
149
public void Insert(int index,
CodeStatement
value)
155
/// <para> Removes a specific <see cref='Microsoft.CodeDom.
CodeStatement
'/> from the
158
public void Remove(
CodeStatement
value)
FrameworkFork\Microsoft.CodeDom\System\CodeTryCatchFinallyStatement.cs (3)
43
public CodeTryCatchFinallyStatement(
CodeStatement
[] tryStatements, CodeCatchClause[] catchClauses)
55
public CodeTryCatchFinallyStatement(
CodeStatement
[] tryStatements, CodeCatchClause[] catchClauses,
CodeStatement
[] finallyStatements)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ClientClassGenerator.cs (1)
919
private static
CodeStatement
CreateDelegateIfNotNull(CodeMemberField delegateField, CodeMemberMethod delegateMethod)