Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Markup / Baml2006 / Baml2006ReaderFrame.cs / 1305600 / Baml2006ReaderFrame.cs
using System; using System.Collections.Generic; using System.Xaml; using System.Diagnostics; using MS.Internal.Xaml.Context; namespace System.Windows.Baml2006 { internal class Baml2006ReaderFrame : XamlFrame { protected Dictionary_namespaces; public Baml2006ReaderFrame() { DelayedConnectionId = -1; } public Baml2006ReaderFrame(Baml2006ReaderFrame source) { XamlType = source.XamlType; Member = source.Member; if (source._namespaces != null) { _namespaces = new Dictionary (source._namespaces); } } public override XamlFrame Clone() { return new Baml2006ReaderFrame(this); } public XamlType XamlType { get; set; } public XamlMember Member { get; set; } public KeyRecord Key { get; set; } public int DelayedConnectionId { get; set; } public XamlMember ContentProperty { get; set; } public bool FreezeFreezables { get; set; } public void AddNamespace(string prefix, string xamlNs) { if (null == _namespaces) { _namespaces = new Dictionary (); } _namespaces.Add(prefix, xamlNs); } public void SetNamespaces(Dictionary namespaces) { _namespaces = namespaces; } public bool TryGetNamespaceByPrefix(string prefix, out string xamlNs) { if (_namespaces != null && _namespaces.TryGetValue(prefix, out xamlNs)) { return true; } xamlNs = null; return false; } public bool TryGetPrefixByNamespace(string xamlNs, out string prefix) { if (_namespaces != null) { foreach (KeyValuePair pair in _namespaces) { if (pair.Value == xamlNs) { prefix = pair.Key; return true; } } } prefix = null; return false; } public override void Reset() { XamlType = null; Member = null; if (_namespaces != null) { _namespaces.Clear(); } Flags = Baml2006ReaderFrameFlags.None; LineNumber = 0; LineOffset = 0; IsDeferredContent = false; Key = null; DelayedConnectionId = -1; ContentProperty = null; } public Baml2006ReaderFrameFlags Flags { get; set; } public int LineNumber { get; set; } public int LineOffset { get; set; } public bool IsDeferredContent { get; set; } } internal enum Baml2006ReaderFrameFlags:byte { None, IsImplict, HasImplicitProperty } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlIlGenerator.cs
- ObjectCacheHost.cs
- DesignerCalendarAdapter.cs
- DebuggerAttributes.cs
- FileIOPermission.cs
- HttpDictionary.cs
- WhitespaceReader.cs
- WebPartMinimizeVerb.cs
- CompoundFileReference.cs
- DataServiceCollectionOfT.cs
- ConfigurationLoader.cs
- SubpageParagraph.cs
- HyperLinkField.cs
- ObservableDictionary.cs
- ComponentCollection.cs
- X509ChainPolicy.cs
- IntranetCredentialPolicy.cs
- IEnumerable.cs
- PlatformNotSupportedException.cs
- XamlWriter.cs
- Int32EqualityComparer.cs
- SmiRequestExecutor.cs
- HtmlTextViewAdapter.cs
- SQLMoneyStorage.cs
- _ConnectStream.cs
- PackagingUtilities.cs
- StaticSiteMapProvider.cs
- XmlLangPropertyAttribute.cs
- EmptyCollection.cs
- ResourcesGenerator.cs
- SystemWebCachingSectionGroup.cs
- DispatcherTimer.cs
- AdornerPresentationContext.cs
- ConnectionManagementSection.cs
- DataSetUtil.cs
- FormsAuthenticationTicket.cs
- RenderTargetBitmap.cs
- QilValidationVisitor.cs
- PeerPresenceInfo.cs
- _emptywebproxy.cs
- SoapIgnoreAttribute.cs
- Menu.cs
- NavigationProperty.cs
- ResponseBodyWriter.cs
- GridViewRowEventArgs.cs
- SessionEndedEventArgs.cs
- RuleAttributes.cs
- CompilerErrorCollection.cs
- Point3DCollectionValueSerializer.cs
- SHA256Managed.cs
- Solver.cs
- EnumType.cs
- SqlMethodAttribute.cs
- RawUIStateInputReport.cs
- DocumentGrid.cs
- DefaultValueConverter.cs
- HealthMonitoringSectionHelper.cs
- BasicExpandProvider.cs
- SafeArrayRankMismatchException.cs
- FramingDecoders.cs
- ColorInterpolationModeValidation.cs
- UInt32.cs
- ParseHttpDate.cs
- AnimatedTypeHelpers.cs
- TeredoHelper.cs
- CheckBoxList.cs
- KeyPressEvent.cs
- ToolStripContentPanel.cs
- ExecutionScope.cs
- DataTableMappingCollection.cs
- PlainXmlSerializer.cs
- ResourcePermissionBase.cs
- PhysicalFontFamily.cs
- CommentAction.cs
- RepeatButtonAutomationPeer.cs
- BamlResourceSerializer.cs
- LinqDataSourceHelper.cs
- PageVisual.cs
- CompareValidator.cs
- DependentList.cs
- MetadataArtifactLoaderComposite.cs
- contentDescriptor.cs
- SqlDataSourceSummaryPanel.cs
- TrustLevel.cs
- OracleLob.cs
- streamingZipPartStream.cs
- TypeNameConverter.cs
- HtmlTableRowCollection.cs
- BamlVersionHeader.cs
- XslAstAnalyzer.cs
- SQLBinaryStorage.cs
- SignatureDescription.cs
- ObjectTag.cs
- MetadataHelper.cs
- CommandLineParser.cs
- DataContractSerializerSection.cs
- ProfessionalColorTable.cs
- HtmlInputPassword.cs
- RoleManagerModule.cs
- HtmlLiteralTextAdapter.cs