14 references to Properties
Microsoft.CodeAnalysis.VisualBasic (14)
Binding\Binder_AnonymousTypes.vb (1)
303
Me._propertySymbols(index) = anonymousType.
Properties
(index)
Binding\Binder_Query.vb (3)
453
Dim keyProperty = anonymousType.
Properties
(0)
470
keyProperty = anonymousType.
Properties
(1)
493
Dim keyProperty = anonymousType.
Properties
(0)
Binding\MemberSemanticModel.vb (2)
649
Debug.Assert(index < anonymousType.
Properties
.Length)
650
Return anonymousType.
Properties
(index)
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter.vb (1)
653
Dim properties As ImmutableArray(Of AnonymousTypeManager.AnonymousTypePropertyPublicSymbol) = anonType.
Properties
Lowering\LocalRewriter\LocalRewriter_Query.vb (1)
135
For Each propertyDef As PropertySymbol In anonymousType.
Properties
Lowering\MethodToClassRewriter\MethodToClassRewriter.vb (1)
306
newProperty = anonymousContainer.
Properties
(anonProperty.PropertyIndex)
Operations\VisualBasicOperationFactory_Methods.vb (1)
314
Dim properties = DirectCast(expression.Type, AnonymousTypePublicSymbol).
Properties
Semantics\Conversions.vb (4)
1571
If anonymousType.
Properties
.Length <> 1 OrElse
1572
anonymousType.
Properties
(0).SetMethod IsNot Nothing OrElse
1573
Not anonymousType.
Properties
(0).Name.Equals(GeneratedNameConstants.ItAnonymous) OrElse
1574
Not invokeParams(1).Type.IsSameTypeIgnoringAll(anonymousType.
Properties
(0).Type) Then