14 references to Properties
Microsoft.CodeAnalysis.VisualBasic (14)
Binding\Binder_AnonymousTypes.vb (1)
305Me._propertySymbols(index) = anonymousType.Properties(index)
Binding\Binder_Query.vb (3)
452Dim keyProperty = anonymousType.Properties(0) 469keyProperty = anonymousType.Properties(1) 492Dim keyProperty = anonymousType.Properties(0)
Binding\MemberSemanticModel.vb (2)
648Debug.Assert(index < anonymousType.Properties.Length) 649Return anonymousType.Properties(index)
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter.vb (1)
682Dim properties As ImmutableArray(Of AnonymousTypeManager.AnonymousTypePropertyPublicSymbol) = anonType.Properties
Lowering\LocalRewriter\LocalRewriter_Query.vb (1)
135For Each propertyDef As PropertySymbol In anonymousType.Properties
Lowering\MethodToClassRewriter\MethodToClassRewriter.vb (1)
305newProperty = anonymousContainer.Properties(anonProperty.PropertyIndex)
Operations\VisualBasicOperationFactory_Methods.vb (1)
314Dim properties = DirectCast(expression.Type, AnonymousTypePublicSymbol).Properties
Semantics\Conversions.vb (4)
1575If anonymousType.Properties.Length <> 1 OrElse 1576anonymousType.Properties(0).SetMethod IsNot Nothing OrElse 1577Not anonymousType.Properties(0).Name.Equals(GeneratedNameConstants.ItAnonymous) OrElse 1578Not invokeParams(1).Type.IsSameTypeIgnoringAll(anonymousType.Properties(0).Type) Then