1 write to _context
System.Xaml (1)
System\Xaml\Parser\XamlPullParser.cs (1)
24
_context
= context;
72 references to _context
System.Xaml (72)
System\Xaml\Parser\XamlPullParser.cs (72)
250
if (
_context
.CurrentInItemsProperty ||
_context
.CurrentInInitProperty ||
_context
.CurrentInUnknownContent)
254
if (
_context
.CurrentInCollectionFromMember)
258
_context
.CurrentInCollectionFromMember = false;
259
if (
_context
.CurrentInImplicitArray)
261
_context
.CurrentInImplicitArray = false;
270
XamlType currentType =
_context
.CurrentType;
385
if (
_context
.CurrentInItemsProperty ||
_context
.CurrentInInitProperty)
389
if (
_context
.CurrentInCollectionFromMember)
392
_context
.CurrentInCollectionFromMember = false;
393
if (
_context
.CurrentInImplicitArray)
395
_context
.CurrentInImplicitArray = false;
427
XamlType currentType =
_context
.CurrentType;
478
if (!
_context
.CurrentInItemsProperty && !
_context
.CurrentInUnknownContent)
491
else if (!
_context
.CurrentForcedToUseConstructor
513
if (isContentProperty && !
_context
.CurrentInUnknownContent)
518
bool isVisible =
_context
.IsVisible(
519
contentProperty,
_context
.CurrentTypeIsRoot ?
_context
.CurrentType : null);
604
if (!
_context
.CurrentInItemsProperty && !
_context
.CurrentInUnknownContent)
679
&&
_context
.CurrentMember.TypeConverter != null)
687
if (!
_context
.CurrentInCollectionFromMember)
778
_context
.PushScope();
779
_context
.CurrentType = xamlType;
780
_context
.CurrentTypeNamespace = xamlNamespace;
788
XamlType xamlType =
_context
.CurrentType;
790
_context
.PopScope();
791
_context
.CurrentPreviousChildType = xamlType;
804
_context
.CurrentForcedToUseConstructor = true;
812
MePullParser me = new MePullParser(
_context
);
834
_context
.CurrentMember = member;
837
_context
.CurrentForcedToUseConstructor = true;
840
_context
.CurrentInContainerDirective = member.IsDirective && (memberXamlType != null && (memberXamlType.IsCollection || memberXamlType.IsDictionary));
848
_context
.CurrentMember = null;
849
_context
.CurrentPreviousChildType = null;
850
_context
.CurrentInContainerDirective = false;
860
_context
.CurrentMember = property;
870
_context
.CurrentMember = initProperty;
894
XamlType previousObject =
_context
.CurrentPreviousChildType;
916
_context
.PushScope();
917
_context
.CurrentType = realType;
918
_context
.CurrentInCollectionFromMember = true;
926
_context
.CurrentMember = XamlLanguage.Items;
927
_context
.CurrentInContainerDirective = true;
943
_arrayExtensionType =
_context
.GetXamlType(arrayType);
956
_arrayTypeMember =
_context
.GetXamlProperty(ArrayExtensionType, @"Type", null);
969
_itemsTypeMember =
_context
.GetXamlProperty(ArrayExtensionType, @"Items", null);
978
XamlType currentType =
_context
.CurrentType;
979
XamlMember currentProperty =
_context
.CurrentMember;
991
INamespacePrefixLookup prefixResolver = new NamespacePrefixLookup(out newNamespaces,
_context
.FindNamespaceByPrefix);
999
_context
.CurrentInImplicitArray = true;
1007
currentType =
_context
.CurrentType;
1008
currentProperty =
_context
.CurrentMember;
1020
if (currentProperty.IsReadOnly || !
_context
.CurrentMemberIsWriteVisible())
1083
if (
_context
.CurrentMember != null &&
_context
.CurrentMember.IsUnknown)
1087
else if (
_context
.CurrentInContainerDirective)
1089
XamlType collectionType =
_context
.CurrentMember == XamlLanguage.Items ?
_context
.CurrentType :
_context
.CurrentMember.Type;
1101
XamlMember prop =
_context
.CurrentMember;
1106
prop =
_context
.CurrentType.ContentProperty;
1112
if (prop == null &&
_context
.CurrentType.IsWhitespaceSignificantCollection)
1123
if (
_context
.CurrentPreviousChildType == null)
1129
else if (
_context
.CurrentType.ContentProperty != null)
1131
prop =
_context
.CurrentType.ContentProperty;
1147
else if (
_context
.CurrentType.TypeConverter != null && !
_context
.CurrentForcedToUseConstructor)