9 instantiations of CodeStatementCollection
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.CodeDom\System\CodeCatchClause.cs (1)
108
_statements = new
CodeStatementCollection
();
FrameworkFork\Microsoft.CodeDom\System\CodeConditionStatement.cs (2)
26
private CodeStatementCollection _trueStatments = new
CodeStatementCollection
();
27
private CodeStatementCollection _falseStatments = new
CodeStatementCollection
();
FrameworkFork\Microsoft.CodeDom\System\CodeIterationStatement.cs (1)
28
private CodeStatementCollection _statements = new
CodeStatementCollection
();
FrameworkFork\Microsoft.CodeDom\System\CodeMemberMethod.cs (1)
26
private CodeStatementCollection _statements = new
CodeStatementCollection
();
FrameworkFork\Microsoft.CodeDom\System\CodeMemberProperty.cs (2)
29
private CodeStatementCollection _getStatements = new
CodeStatementCollection
();
30
private CodeStatementCollection _setStatements = new
CodeStatementCollection
();
FrameworkFork\Microsoft.CodeDom\System\CodeTryCatchFinallyStatement.cs (2)
24
private CodeStatementCollection _tryStatments = new
CodeStatementCollection
();
25
private CodeStatementCollection _finallyStatments = new
CodeStatementCollection
();
62 references to CodeStatementCollection
dotnet-svcutil-lib (62)
CodeDomFixup\MethodCreationHelper.cs (23)
148
private static void AddBindingConfiguration(
CodeStatementCollection
statements, Binding binding)
214
private static void AddIssuerBindingConfiguration(
CodeStatementCollection
statements, Binding binding)
257
private static void AddWSHttpBindingConfiguration(
CodeStatementCollection
statements, WSHttpBinding wsHttp, bool isIssuerBinding = false)
398
private static void AddWS2007HttpBindingConfiguration(
CodeStatementCollection
statements, WS2007HttpBinding ws2007Http, bool isIssuerBinding = false)
539
private static void AddWSFederationBindingConfiguration(
CodeStatementCollection
statements, WSFederationHttpBinding wsFedHttp, bool isIssuerBinding = false)
743
private static void AddWS2007FederationBindingConfiguration(
CodeStatementCollection
statements, WS2007FederationHttpBinding ws2007FedHttp, bool isIssuerBinding = false)
947
private static void AddCustomBindingConfiguration(
CodeStatementCollection
statements, CustomBinding custom, bool isIssuerBinding = false)
1094
private static void AddSslStreamSecurityBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding)
1105
private static void AddWinStreamSecurityBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding)
1116
private static void AddTransportSecurityBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding, TransportSecurityBindingElement bindingElement)
1200
private static void AddTcpBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding, TcpTransportBindingElement bindingElement)
1295
private static void AddNamedPipeBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding, NamedPipeTransportBindingElement bindingElement)
1355
private static void AddHttpBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding, HttpTransportBindingElement bindingElement)
1422
private static void AddBinaryBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding)
1433
private static void AddMtomBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding, MtomMessageEncodingBindingElement bindingElement)
1475
private static void AddTextBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding, TextMessageEncodingBindingElement bindingElement)
1517
private static void AddReliableSessionBindingElement(
CodeStatementCollection
statements, CodeVariableReferenceExpression customBinding, ReliableSessionBindingElement bindingElement)
1679
private static void AddNetTcpBindingConfiguration(
CodeStatementCollection
statements, NetTcpBinding netTcp, bool isIssuerBinding = false)
1789
private static void AddNamedPipeBindingConfiguration(
CodeStatementCollection
statements, NetNamedPipeBinding namedPipe)
1871
private static void AddBasicHttpBindingConfiguration(
CodeStatementCollection
statements, BasicHttpBinding basicHttp, bool isIssuerBinding = false)
1977
private static void AddNetHttpBindingConfiguration(
CodeStatementCollection
statements, NetHttpBinding netHttp, bool isIssuerBinding = false)
2094
private static void MaxOutProperties(
CodeStatementCollection
statements, CodeVariableReferenceExpression resultVar)
2118
private static void WSHttpMaxOutProperties(
CodeStatementCollection
statements, CodeVariableReferenceExpression resultVar)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (1)
1161
protected void GenerateStatements(
CodeStatementCollection
stms)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (3)
504
private void ValidateStatements(
CodeStatementCollection
stms)
547
CodeStatementCollection
falseStatemetns = e.FalseStatements;
570
CodeStatementCollection
finallyStatements = e.FinallyStatements;
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (3)
1237
private void GenerateStatements(
CodeStatementCollection
stms)
1635
CodeStatementCollection
falseStatemetns = e.FalseStatements;
1696
CodeStatementCollection
finallyStatements = e.FinallyStatements;
FrameworkFork\Microsoft.CodeDom\System\CodeCatchClause.cs (2)
23
private
CodeStatementCollection
_statements;
102
public
CodeStatementCollection
Statements
FrameworkFork\Microsoft.CodeDom\System\CodeConditionStatement.cs (4)
26
private
CodeStatementCollection
_trueStatments = new CodeStatementCollection();
27
private
CodeStatementCollection
_falseStatments = new CodeStatementCollection();
86
public
CodeStatementCollection
TrueStatements
102
public
CodeStatementCollection
FalseStatements
FrameworkFork\Microsoft.CodeDom\System\CodeIterationStatement.cs (2)
28
private
CodeStatementCollection
_statements = new CodeStatementCollection();
112
public
CodeStatementCollection
Statements
FrameworkFork\Microsoft.CodeDom\System\CodeMemberMethod.cs (2)
26
private
CodeStatementCollection
_statements = new CodeStatementCollection();
87
public
CodeStatementCollection
Statements
FrameworkFork\Microsoft.CodeDom\System\CodeMemberProperty.cs (4)
29
private
CodeStatementCollection
_getStatements = new CodeStatementCollection();
30
private
CodeStatementCollection
_setStatements = new CodeStatementCollection();
133
public
CodeStatementCollection
GetStatements
146
public
CodeStatementCollection
SetStatements
FrameworkFork\Microsoft.CodeDom\System\CodeStatementCollection.cs (14)
26
/// Initializes a new instance of <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/>.
35
/// Initializes a new instance of <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/> based on another <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/>.
38
public CodeStatementCollection(
CodeStatementCollection
value)
45
/// Initializes a new instance of <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/> containing any array of <see cref='Microsoft.CodeDom.CodeStatement'/> objects.
70
/// <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/> .</para>
87
/// <para>Copies the elements of an array to the end of the <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/>.</para>
103
/// Adds the contents of another <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/> to the end of the collection.
106
public void AddRange(
CodeStatementCollection
value)
121
/// <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/> contains the specified <see cref='Microsoft.CodeDom.CodeStatement'/>.</para>
129
/// <para>Copies the <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/> values to a one-dimensional <see cref='System.Array'/> instance at the
139
/// the <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/> .</para>
147
/// <para>Inserts a <see cref='Microsoft.CodeDom.CodeStatement'/> into the <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/> at the specified index.</para>
156
/// <see cref='Microsoft.CodeDom.
CodeStatementCollection
'/> .</para>
FrameworkFork\Microsoft.CodeDom\System\CodeTryCatchFinallyStatement.cs (4)
24
private
CodeStatementCollection
_tryStatments = new CodeStatementCollection();
25
private
CodeStatementCollection
_finallyStatments = new CodeStatementCollection();
68
public
CodeStatementCollection
TryStatements
95
public
CodeStatementCollection
FinallyStatements