14 references to Properties
Microsoft.CodeAnalysis.VisualBasic (14)
Binding\Binder_AnonymousTypes.vb (1)
305
Me._propertySymbols(index) = anonymousType.
Properties
(index)
Binding\Binder_Query.vb (3)
452
Dim keyProperty = anonymousType.
Properties
(0)
469
keyProperty = anonymousType.
Properties
(1)
492
Dim keyProperty = anonymousType.
Properties
(0)
Binding\MemberSemanticModel.vb (2)
648
Debug.Assert(index < anonymousType.
Properties
.Length)
649
Return anonymousType.
Properties
(index)
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter.vb (1)
682
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)
305
newProperty = anonymousContainer.
Properties
(anonProperty.PropertyIndex)
Operations\VisualBasicOperationFactory_Methods.vb (1)
314
Dim properties = DirectCast(expression.Type, AnonymousTypePublicSymbol).
Properties
Semantics\Conversions.vb (4)
1575
If anonymousType.
Properties
.Length <> 1 OrElse
1576
anonymousType.
Properties
(0).SetMethod IsNot Nothing OrElse
1577
Not anonymousType.
Properties
(0).Name.Equals(GeneratedNameConstants.ItAnonymous) OrElse
1578
Not invokeParams(1).Type.IsSameTypeIgnoringAll(anonymousType.
Properties
(0).Type) Then