Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / Compilation / WCFModel / SvcMapFileLoader.cs / 1 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DateTimeParse.cs
- ToolStripPanelRow.cs
- Model3D.cs
- WebCategoryAttribute.cs
- BrowserCapabilitiesCompiler.cs
- ImageFormat.cs
- TcpClientCredentialType.cs
- BrowserDefinitionCollection.cs
- ManualResetEvent.cs
- Win32MouseDevice.cs
- CodeArrayCreateExpression.cs
- XmlStringTable.cs
- MachineKeyConverter.cs
- ViewKeyConstraint.cs
- Int32EqualityComparer.cs
- BitmapEffect.cs
- MemberJoinTreeNode.cs
- FontCacheUtil.cs
- ReachSerializer.cs
- LongValidator.cs
- DataServiceRequest.cs
- RemotingAttributes.cs
- GeneralTransform3DCollection.cs
- BypassElement.cs
- KeysConverter.cs
- FlowLayoutSettings.cs
- HtmlTitle.cs
- StrokeNodeEnumerator.cs
- FontDifferentiator.cs
- Rect.cs
- CollectionEditor.cs
- UrlMappingCollection.cs
- OdbcConnectionString.cs
- UnsafeNativeMethods.cs
- HealthMonitoringSection.cs
- BmpBitmapDecoder.cs
- ExeConfigurationFileMap.cs
- NativeMethods.cs
- ConnectionOrientedTransportBindingElement.cs
- DetailsViewDeletedEventArgs.cs
- XPathNodeHelper.cs
- SerializerProvider.cs
- WebScriptMetadataMessageEncodingBindingElement.cs
- Exception.cs
- EventItfInfo.cs
- BaseTemplateCodeDomTreeGenerator.cs
- WindowsTooltip.cs
- MatrixKeyFrameCollection.cs
- EdmProperty.cs
- HatchBrush.cs
- FrameworkObject.cs
- NumberFunctions.cs
- PassportAuthenticationModule.cs
- ChineseLunisolarCalendar.cs
- ActivityStatusChangeEventArgs.cs
- UpdateEventArgs.cs
- TemplatedMailWebEventProvider.cs
- MissingMethodException.cs
- Wildcard.cs
- NativeMethods.cs
- iisPickupDirectory.cs
- MethodBuilder.cs
- Ipv6Element.cs
- ViewGenerator.cs
- ConfigXmlDocument.cs
- FileNotFoundException.cs
- SqlDataSourceCache.cs
- OpenTypeCommon.cs
- ToolStripPanelCell.cs
- RightsManagementInformation.cs
- OdbcException.cs
- XmlSchemaImport.cs
- DataServiceRequestOfT.cs
- NamespaceExpr.cs
- JsonGlobals.cs
- Internal.cs
- EventProviderWriter.cs
- Memoizer.cs
- TiffBitmapDecoder.cs
- XmlILTrace.cs
- webeventbuffer.cs
- Vector3dCollection.cs
- TreeIterator.cs
- PackagePartCollection.cs
- LogicalExpr.cs
- ToolStripSeparatorRenderEventArgs.cs
- PersonalizationProviderCollection.cs
- PolicyImporterElement.cs
- MissingMemberException.cs
- LinqDataSourceDisposeEventArgs.cs
- WebResourceUtil.cs
- Image.cs
- WebPartVerbCollection.cs
- AuthorizationRuleCollection.cs
- DmlSqlGenerator.cs
- MultipleViewProviderWrapper.cs
- TimerTable.cs
- BamlLocalizer.cs
- SqlParameterCollection.cs
- ResizeGrip.cs