14 references to Properties
Microsoft.CodeAnalysis.VisualBasic (14)
Binding\Binder_AnonymousTypes.vb (1)
303Me._propertySymbols(index) = anonymousType.Properties(index)
Binding\Binder_Query.vb (3)
453Dim keyProperty = anonymousType.Properties(0) 470keyProperty = anonymousType.Properties(1) 493Dim keyProperty = anonymousType.Properties(0)
Binding\MemberSemanticModel.vb (2)
649Debug.Assert(index < anonymousType.Properties.Length) 650Return anonymousType.Properties(index)
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter.vb (1)
653Dim 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)
306newProperty = anonymousContainer.Properties(anonProperty.PropertyIndex)
Operations\VisualBasicOperationFactory_Methods.vb (1)
314Dim properties = DirectCast(expression.Type, AnonymousTypePublicSymbol).Properties
Semantics\Conversions.vb (4)
1571If anonymousType.Properties.Length <> 1 OrElse 1572anonymousType.Properties(0).SetMethod IsNot Nothing OrElse 1573Not anonymousType.Properties(0).Name.Equals(GeneratedNameConstants.ItAnonymous) OrElse 1574Not invokeParams(1).Type.IsSameTypeIgnoringAll(anonymousType.Properties(0).Type) Then