Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / MS / Internal / AppModel / AppModelKnownContentFactory.cs / 1 / AppModelKnownContentFactory.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // Provides a method to turn a baml stream into an object. // // // History: // 11/22/04: [....]: Initial Creation // // //--------------------------------------------------------------------------- using System; using System.IO; using System.Net; // WebPermission. using System.Security; using System.Security.Permissions; using System.Windows; using System.Windows.Markup; using System.Windows.Navigation; using MS.Internal.Controls; using MS.Internal.Navigation; using MS.Internal.Utility; using MS.Internal.Resources; using System.IO.Packaging; using MS.Internal.PresentationFramework; using System.ComponentModel; namespace MS.Internal.AppModel { // !!!! Note: Those methods are registered as MimeObjectFactory.StreamToObjectFactoryDelegate. The caller expects the // delgate to close stream. internal static class AppModelKnownContentFactory { //// Creates an object instance from a Baml stream and it's Uri // internal static object BamlConverter(Stream stream, Uri baseUri, bool canUseTopLevelBrowser, bool sandboxExternalContent, bool allowAsync, bool isJournalNavigation, out XamlReader asyncObjectConverter) { asyncObjectConverter = null; // If this stream comes from outside the application throw // if (!BaseUriHelper.IsPackApplicationUri(baseUri)) { throw new InvalidOperationException(SR.Get(SRID.BamlIsNotSupportedOutsideOfApplicationResources)); } // If this stream comes from a content file also throw Uri partUri = PackUriHelper.GetPartUri(baseUri); string partName, assemblyName, assemblyVersion, assemblyKey; BaseUriHelper.GetAssemblyNameAndPart(partUri, out partName, out assemblyName, out assemblyVersion, out assemblyKey); if (ContentFileHelper.IsContentFile(partName)) { throw new InvalidOperationException(SR.Get(SRID.BamlIsNotSupportedOutsideOfApplicationResources)); } ParserContext pc = new ParserContext(); pc.BaseUri = baseUri; pc.SkipJournaledProperties = isJournalNavigation; return Application.LoadBamlStreamWithSyncInfo(stream, pc); } //// Creates an object instance from a Xaml stream and it's Uri // ////// Critical - Keep track of this, as sandboxing is meant to be a way for an application to /// isolate xaml content from the hosting application. /// TreatAsSafe - the act of putting this content in a new webbrowser control (and by extention, a new PresentationHost) /// isolates the xaml content from the rest of the application. /// [SecurityCritical, SecurityTreatAsSafe] internal static object XamlConverter(Stream stream, Uri baseUri, bool canUseTopLevelBrowser, bool sandboxExternalContent, bool allowAsync, bool isJournalNavigation, out XamlReader asyncObjectConverter) { asyncObjectConverter = null; if (sandboxExternalContent) { if (SecurityHelper.AreStringTypesEqual(baseUri.Scheme, BaseUriHelper.PackAppBaseUri.Scheme)) { baseUri = BaseUriHelper.ConvertPackUriToAbsoluteExternallyVisibleUri(baseUri); } stream.Close(); return new WebBrowser(baseUri);; } else { ParserContext pc = new ParserContext(); pc.BaseUri = baseUri; pc.SkipJournaledProperties = isJournalNavigation; pc.XamlTypeMapper = XmlParserDefaults.DefaultMapper; if (allowAsync) { XamlReader xr = new XamlReader(); asyncObjectConverter = xr; xr.LoadCompleted += new AsyncCompletedEventHandler(OnParserComplete); // XamlReader.Load will close the stream. return xr.LoadAsync(stream, pc); } else { // XamlReader.Load will close the stream. return XamlReader.Load(stream, pc); } } } private static void OnParserComplete(object sender, AsyncCompletedEventArgs args) { // We can get this event from cancellation. We do not care about the error if there is any // that happened as a result of cancellation. if ((! args.Cancelled) && (args.Error != null)) { throw args.Error; } } internal static object HtmlXappConverter(Stream stream, Uri baseUri, bool canUseTopLevelBrowser, bool sandboxExternalContent, bool allowAsync, bool isJournalNavigation, out XamlReader asyncObjectConverter) { asyncObjectConverter = null; if (canUseTopLevelBrowser) { return null; } if (SecurityHelper.AreStringTypesEqual(baseUri.Scheme, BaseUriHelper.PackAppBaseUri.Scheme)) { baseUri = BaseUriHelper.ConvertPackUriToAbsoluteExternallyVisibleUri(baseUri); } stream.Close(); return new WebBrowser(baseUri); } } } // 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
- Transactions.cs
- DiscoveryOperationContext.cs
- bidPrivateBase.cs
- RegisteredScript.cs
- DataGridItemCollection.cs
- LiteralLink.cs
- SamlAuthorizationDecisionClaimResource.cs
- ChannelBinding.cs
- WizardForm.cs
- LazyInitializer.cs
- StringValidatorAttribute.cs
- SqlConnectionManager.cs
- PropertyChangeTracker.cs
- XmlSchemaImporter.cs
- CompensatableSequenceActivity.cs
- XmlWellformedWriterHelpers.cs
- PathFigure.cs
- UnionExpr.cs
- SystemColors.cs
- SizeAnimation.cs
- ProtocolsConfigurationHandler.cs
- _OverlappedAsyncResult.cs
- CodeDelegateInvokeExpression.cs
- ScriptComponentDescriptor.cs
- MobileControlDesigner.cs
- PersistenceTypeAttribute.cs
- AttachmentCollection.cs
- ImplicitInputBrush.cs
- FieldValue.cs
- SqlClientMetaDataCollectionNames.cs
- HtmlInputFile.cs
- InkCanvasAutomationPeer.cs
- UpdateProgress.cs
- MessageSmuggler.cs
- XmlSchemaAnyAttribute.cs
- ByteBufferPool.cs
- LinqDataSourceUpdateEventArgs.cs
- XmlSchemaAnnotation.cs
- DeclarativeCatalogPartDesigner.cs
- CustomValidator.cs
- CodeTypeParameter.cs
- HttpFileCollection.cs
- InputManager.cs
- OdbcTransaction.cs
- tooltip.cs
- IndexObject.cs
- ApplicationCommands.cs
- ConfigWriter.cs
- BuilderPropertyEntry.cs
- DataView.cs
- CanonicalizationDriver.cs
- MulticastOption.cs
- SqlFormatter.cs
- MsmqIntegrationBindingElement.cs
- QueryExpr.cs
- CodeDOMProvider.cs
- PropertyEmitterBase.cs
- Exceptions.cs
- RuleSetCollection.cs
- TypeNameConverter.cs
- DiffuseMaterial.cs
- StreamReader.cs
- DataRecordInfo.cs
- ClassicBorderDecorator.cs
- WeakReference.cs
- ClrPerspective.cs
- SmtpReplyReaderFactory.cs
- ColumnReorderedEventArgs.cs
- OperationParameterInfoCollection.cs
- Axis.cs
- CompilationSection.cs
- PaginationProgressEventArgs.cs
- StrokeCollectionConverter.cs
- ResourceDescriptionAttribute.cs
- CodeAccessSecurityEngine.cs
- WebPartConnectionsConnectVerb.cs
- ComponentResourceManager.cs
- PerformanceCounterPermission.cs
- DataObjectSettingDataEventArgs.cs
- MimeTypeAttribute.cs
- shaper.cs
- QueryCacheEntry.cs
- DeploymentSection.cs
- DataGridViewTopRowAccessibleObject.cs
- FrameworkTextComposition.cs
- Size.cs
- AutomationPropertyInfo.cs
- MimeParameter.cs
- NumericUpDownAccelerationCollection.cs
- WindowsSspiNegotiation.cs
- QilInvokeEarlyBound.cs
- UInt16Converter.cs
- Constraint.cs
- StrongNamePublicKeyBlob.cs
- ProcessHostFactoryHelper.cs
- LocationReferenceValue.cs
- Geometry.cs
- MonthCalendar.cs
- GridViewRowCollection.cs
- RSAPKCS1KeyExchangeDeformatter.cs