Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / Compilation / WCFModel / dataSvcMapFileLoader.cs / 1305376 / dataSvcMapFileLoader.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 DataSvcMapFileLoader : AbstractDataSvcMapFileLoader { private string mapFilePath; public DataSvcMapFileLoader(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 .datasvcmap file. serializer = new System.Web.Compilation.XmlSerializerDataSvc.DataSvcMapFileSerializer(); } 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
- Rfc2898DeriveBytes.cs
- PerformanceCounterPermissionEntry.cs
- BitmapEffectDrawingContent.cs
- CompilationSection.cs
- CollaborationHelperFunctions.cs
- NativeMethods.cs
- AuthenticatingEventArgs.cs
- UdpTransportSettingsElement.cs
- DeviceFilterEditorDialog.cs
- Stack.cs
- DelegatingConfigHost.cs
- TopClause.cs
- ItemContainerGenerator.cs
- SqlStatistics.cs
- IOException.cs
- PeerChannelFactory.cs
- ButtonFlatAdapter.cs
- CompilerParameters.cs
- complextypematerializer.cs
- DownloadProgressEventArgs.cs
- ComponentConverter.cs
- iisPickupDirectory.cs
- AutoGeneratedFieldProperties.cs
- PersonalizationAdministration.cs
- IdentifierCollection.cs
- FontFamilyConverter.cs
- CompositeCollectionView.cs
- FileLogRecordStream.cs
- SqlUDTStorage.cs
- PrinterResolution.cs
- ChtmlPageAdapter.cs
- Utility.cs
- Utils.cs
- MailWebEventProvider.cs
- ReliableChannelBinder.cs
- XmlMembersMapping.cs
- Evidence.cs
- TextTreePropertyUndoUnit.cs
- HostingEnvironment.cs
- NavigationPropertyEmitter.cs
- PartialCachingAttribute.cs
- RowUpdatingEventArgs.cs
- FloaterBaseParaClient.cs
- Page.cs
- ByteStack.cs
- SubordinateTransaction.cs
- FileDialogCustomPlacesCollection.cs
- ResXBuildProvider.cs
- VirtualPath.cs
- ReflectionUtil.cs
- LockCookie.cs
- XmlDownloadManager.cs
- SystemNetHelpers.cs
- ActivityExecutor.cs
- SourceFileBuildProvider.cs
- XmlSchemaChoice.cs
- InheritanceRules.cs
- BehaviorService.cs
- DomNameTable.cs
- SetIterators.cs
- PhonemeEventArgs.cs
- TextTreeFixupNode.cs
- EntityCommandDefinition.cs
- WeakReferenceKey.cs
- DataReceivedEventArgs.cs
- StrongName.cs
- ComponentChangingEvent.cs
- safemediahandle.cs
- Utils.cs
- AccessDataSourceView.cs
- ConsoleTraceListener.cs
- DeviceSpecificChoiceCollection.cs
- OracleParameterBinding.cs
- SqlFacetAttribute.cs
- HttpHandlerAction.cs
- RawMouseInputReport.cs
- ColorAnimation.cs
- ExceptQueryOperator.cs
- EqualityComparer.cs
- SetterBase.cs
- FontFamilyValueSerializer.cs
- DataMemberAttribute.cs
- XmlArrayItemAttributes.cs
- ClientTarget.cs
- LocalizableResourceBuilder.cs
- SapiRecognizer.cs
- ComponentResourceKey.cs
- ProcessHostServerConfig.cs
- MimeParameters.cs
- DesignerWithHeader.cs
- QueryCacheManager.cs
- EdmError.cs
- ObjectSpanRewriter.cs
- ParseNumbers.cs
- UmAlQuraCalendar.cs
- SqlConnectionPoolGroupProviderInfo.cs
- ExceptionUtil.cs
- TextParagraphProperties.cs
- TraceListeners.cs
- ExpressionBindingCollection.cs