Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / Compilation / WCFModel / SvcMapFileLoader.cs / 1305376 / SvcMapFileLoader.cs
//------------------------------------------------------------------------------ //// Copyright (C) Microsoft Corporation. All Rights Reserved. // //----------------------------------------------------------------------------- // // Note: Unlike most files in this directory, the code in this file is *not* // shared with wizard\vsdesigner\designer\microsoft\vsdesigner\WCFModel. // // The code under ndp\fx\src\xsp\System\Web\Extensions\Compilation\XmlSerializer might have to be regerenated when // the format of the svcmap file is changed, or class structure has been changed in this directory. Please follow the HowTo file // under Compilation directory to see how to regerenate that code. // using System; using System.Collections.Generic; using System.Text; #if WEB_EXTENSIONS_CODE using System.Web.Resources; #else using Microsoft.VSDesigner.Resources.Microsoft.VSDesigner; #endif namespace System.Web.Compilation.WCFModel { internal class SvcMapFileLoader : AbstractSvcMapFileLoader { private string mapFilePath; private System.Xml.Serialization.XmlSerializer serializer; public SvcMapFileLoader(string mapFilePath) { this.mapFilePath = mapFilePath; } ////// Given a name of a metadata file, returns the full expected path to the file. /// /// ///private string GetMetadataFileFullPath(string name) { // Should be in the same directory as the .svcmap file. return IO.Path.Combine(IO.Path.GetDirectoryName(mapFilePath), name); } /// /// Get a TextReader for the .svcmap file /// ///protected override System.IO.TextReader GetMapFileReader() { return IO.File.OpenText(mapFilePath); } /// /// Read the contents of the given metadata file /// /// The filename (without path) of the metadata file. ///protected override byte[] ReadMetadataFile(string name) { return IO.File.ReadAllBytes(GetMetadataFileFullPath(name)); } /// /// Get access to a byte array that contain the contents of the given extension /// file /// /// /// Name of the extension file. Could be a path relative to the svcmap file location /// or the name of an item in a metadata storage. /// ///protected override byte[] ReadExtensionFile(string name) { return IO.File.ReadAllBytes(GetMetadataFileFullPath(name)); } /// /// Demand-create an XmlSerializer for the SvcMap file... /// protected override System.Xml.Serialization.XmlSerializer Serializer { get { if (serializer == null) { // We have our own pre-generated XML serializer for the .svcmap file. serializer = new System.Web.Compilation.XmlSerializer.SvcMapFileSerializer(); } return serializer; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (C) Microsoft Corporation. All Rights Reserved. // //----------------------------------------------------------------------------- // // Note: Unlike most files in this directory, the code in this file is *not* // shared with wizard\vsdesigner\designer\microsoft\vsdesigner\WCFModel. // // The code under ndp\fx\src\xsp\System\Web\Extensions\Compilation\XmlSerializer might have to be regerenated when // the format of the svcmap file is changed, or class structure has been changed in this directory. Please follow the HowTo file // under Compilation directory to see how to regerenate that code. // using System; using System.Collections.Generic; using System.Text; #if WEB_EXTENSIONS_CODE using System.Web.Resources; #else using Microsoft.VSDesigner.Resources.Microsoft.VSDesigner; #endif namespace System.Web.Compilation.WCFModel { internal class SvcMapFileLoader : AbstractSvcMapFileLoader { private string mapFilePath; private System.Xml.Serialization.XmlSerializer serializer; public SvcMapFileLoader(string mapFilePath) { this.mapFilePath = mapFilePath; } ////// Given a name of a metadata file, returns the full expected path to the file. /// /// ///private string GetMetadataFileFullPath(string name) { // Should be in the same directory as the .svcmap file. return IO.Path.Combine(IO.Path.GetDirectoryName(mapFilePath), name); } /// /// Get a TextReader for the .svcmap file /// ///protected override System.IO.TextReader GetMapFileReader() { return IO.File.OpenText(mapFilePath); } /// /// Read the contents of the given metadata file /// /// The filename (without path) of the metadata file. ///protected override byte[] ReadMetadataFile(string name) { return IO.File.ReadAllBytes(GetMetadataFileFullPath(name)); } /// /// Get access to a byte array that contain the contents of the given extension /// file /// /// /// Name of the extension file. Could be a path relative to the svcmap file location /// or the name of an item in a metadata storage. /// ///protected override byte[] ReadExtensionFile(string name) { return IO.File.ReadAllBytes(GetMetadataFileFullPath(name)); } /// /// Demand-create an XmlSerializer for the SvcMap file... /// protected override System.Xml.Serialization.XmlSerializer Serializer { get { if (serializer == null) { // We have our own pre-generated XML serializer for the .svcmap file. serializer = new System.Web.Compilation.XmlSerializer.SvcMapFileSerializer(); } return serializer; } } } } // 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
- WindowPatternIdentifiers.cs
- UnsafeNetInfoNativeMethods.cs
- SimpleLine.cs
- SBCSCodePageEncoding.cs
- StylusPointDescription.cs
- PrimitiveXmlSerializers.cs
- ColorDialog.cs
- Mutex.cs
- TypeConverterHelper.cs
- Hash.cs
- XamlFigureLengthSerializer.cs
- HttpCookieCollection.cs
- CheckBoxStandardAdapter.cs
- ScrollableControlDesigner.cs
- BamlCollectionHolder.cs
- DtdParser.cs
- AbstractDataSvcMapFileLoader.cs
- DocumentViewer.cs
- TreeChangeInfo.cs
- TextParagraphProperties.cs
- PathGradientBrush.cs
- SubMenuStyle.cs
- RectangleHotSpot.cs
- DesignOnlyAttribute.cs
- Array.cs
- LinkConverter.cs
- Separator.cs
- AvtEvent.cs
- SoapIncludeAttribute.cs
- Vector3DAnimationBase.cs
- ToolBarDesigner.cs
- PasswordBoxAutomationPeer.cs
- CorePropertiesFilter.cs
- LocalizedNameDescriptionPair.cs
- MergeEnumerator.cs
- ToolStripItemCollection.cs
- DesignerSerializerAttribute.cs
- BaseResourcesBuildProvider.cs
- PageStatePersister.cs
- MetafileHeaderWmf.cs
- X509ChainPolicy.cs
- SQLMoney.cs
- HeaderUtility.cs
- EventMetadata.cs
- wgx_commands.cs
- Transform3DGroup.cs
- ClientUtils.cs
- XmlBinaryWriterSession.cs
- KeyValuePairs.cs
- GeneralTransform.cs
- CodeMethodInvokeExpression.cs
- X509RawDataKeyIdentifierClause.cs
- activationcontext.cs
- ProcessModelSection.cs
- GetReadStreamResult.cs
- DaylightTime.cs
- CompiledELinqQueryState.cs
- ScriptServiceAttribute.cs
- SafeRightsManagementPubHandle.cs
- PersonalizationDictionary.cs
- TypeBuilder.cs
- ConnectionManagementElement.cs
- JournalNavigationScope.cs
- WebPart.cs
- designeractionlistschangedeventargs.cs
- WSIdentityFaultException.cs
- QuerySettings.cs
- PositiveTimeSpanValidator.cs
- DataException.cs
- FixedSOMPage.cs
- SqlNodeAnnotation.cs
- Mapping.cs
- RequestNavigateEventArgs.cs
- XmlSchemaCollection.cs
- ResourcePart.cs
- DateTime.cs
- ContextMenuService.cs
- Section.cs
- IdentityHolder.cs
- LeaseManager.cs
- ServiceMemoryGates.cs
- AxisAngleRotation3D.cs
- PropertyDescriptorCollection.cs
- ReturnEventArgs.cs
- CustomAttributeSerializer.cs
- SqlDataSourceQueryEditor.cs
- _RequestCacheProtocol.cs
- X509Utils.cs
- TextDecorationCollectionConverter.cs
- ScriptReferenceEventArgs.cs
- BoundField.cs
- Exception.cs
- EdmToObjectNamespaceMap.cs
- FrameworkName.cs
- JsonServiceDocumentSerializer.cs
- CancelAsyncOperationRequest.cs
- ColorKeyFrameCollection.cs
- DataListItem.cs
- ConcurrentBag.cs
- GridViewRowPresenterBase.cs