Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / Compilation / WCFModel / ExternalFile.cs / 1305376 / ExternalFile.cs
//------------------------------------------------------------------------------ //// Copyright (C) Microsoft Corporation. All Rights Reserved. // //----------------------------------------------------------------------------- // // This code is shared between ndp\fx\src\xsp\System\Web\Extensions\Compilation\WCFModel // and wizard\vsdesigner\designer\microsoft\vsdesigner\WCFModel. // Please make sure the code files between those two directories are alway in [....] when you make any changes to this code. // And always test these code in both places before check in. // 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; using System.Diagnostics; using System.Globalization; using System.IO; #if WEB_EXTENSIONS_CODE using System.Web.Resources; #else using Microsoft.VSDesigner.Resources.Microsoft.VSDesigner; #endif using XmlSerialization = System.Xml.Serialization; #if WEB_EXTENSIONS_CODE namespace System.Web.Compilation.WCFModel #else namespace Microsoft.VSDesigner.WCFModel #endif { ////// This class presents a single file referenced by a svcmap file /// ///#if WEB_EXTENSIONS_CODE internal class ExternalFile #else [CLSCompliant(true)] public class ExternalFile #endif { // File Name private string m_FileName; // Is the MeatadataFile loaded from the file? If it is false, we need create a new file when we save to the disket private bool m_IsExistingFile; // error happens when the file is loaded private Exception m_ErrorInLoading; /// /// Constructor /// ///Must support a default construct for XmlSerializer public ExternalFile() { m_FileName = String.Empty; } ////// Constructor /// /// File Name public ExternalFile(string fileName) { this.FileName = fileName; } ////// Error happens when the file is loaded /// ////// [XmlSerialization.XmlIgnore()] public Exception ErrorInLoading { get { return m_ErrorInLoading; } set { m_ErrorInLoading = value; } } /// /// FileName in the storage /// ////// [XmlSerialization.XmlAttribute()] public string FileName { get { return m_FileName; } set { if (value == null) { throw new ArgumentNullException("value"); } if (!IsLocalFileName(value)) { throw new NotSupportedException(String.Format(CultureInfo.CurrentCulture, WCFModelStrings.ReferenceGroup_InvalidFileName, value)); } m_FileName = value; } } /// /// Is the item loaded from the file? If it is false, we need create a new file when we save to the disket /// ////// [XmlSerialization.XmlIgnore()] public bool IsExistingFile { get { return m_IsExistingFile; } set { m_IsExistingFile = value; } } /// /// Check the file name is a real file name but not a path /// /// ///public static bool IsLocalFileName(string fileName) { if (fileName == null) { throw new ArgumentNullException("fileName"); } if (fileName.IndexOfAny(Path.GetInvalidFileNameChars()) >= 0 || fileName.IndexOfAny(new Char[] { Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar, Path.VolumeSeparatorChar }) >= 0) { return false; } return true; } } } // 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
- NestedContainer.cs
- ViewValidator.cs
- ToolStripMenuItem.cs
- ColorKeyFrameCollection.cs
- WebHttpDispatchOperationSelector.cs
- PropertyGridCommands.cs
- TextContainerChangedEventArgs.cs
- MergePropertyDescriptor.cs
- VisualStyleElement.cs
- RIPEMD160Managed.cs
- XmlSignificantWhitespace.cs
- DefaultPrintController.cs
- DateTimeFormat.cs
- ConnectionManagementElement.cs
- InkSerializer.cs
- Collection.cs
- MaterialCollection.cs
- WebConfigurationHost.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- XhtmlTextWriter.cs
- _NestedSingleAsyncResult.cs
- MimeTypeMapper.cs
- DbgCompiler.cs
- RadioButtonPopupAdapter.cs
- storepermission.cs
- SoapRpcServiceAttribute.cs
- DataGridSortCommandEventArgs.cs
- IPAddress.cs
- DetailsViewInsertEventArgs.cs
- ExpandSegmentCollection.cs
- WebBrowserEvent.cs
- InfocardChannelParameter.cs
- ReliabilityContractAttribute.cs
- XmlQueryCardinality.cs
- UInt64Converter.cs
- SoapEnumAttribute.cs
- TypeLoadException.cs
- SyndicationDeserializer.cs
- TagNameToTypeMapper.cs
- hebrewshape.cs
- XPathSingletonIterator.cs
- ContextToken.cs
- WebPartEditorCancelVerb.cs
- ContextBase.cs
- OneWayBindingElementImporter.cs
- LayoutManager.cs
- BrushValueSerializer.cs
- OrderByLifter.cs
- dataprotectionpermission.cs
- EndSelectCardRequest.cs
- SHA1.cs
- XPathDocumentNavigator.cs
- ImplicitInputBrush.cs
- SelectionProviderWrapper.cs
- DataGridCellsPanel.cs
- SuppressIldasmAttribute.cs
- CredentialCache.cs
- ObjectNotFoundException.cs
- Typeface.cs
- UInt32Storage.cs
- FixedPageStructure.cs
- AnimationClock.cs
- AsyncResult.cs
- ClientEndpointLoader.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- Translator.cs
- MetadataCache.cs
- ExpressionContext.cs
- HostProtectionException.cs
- Event.cs
- GetPageNumberCompletedEventArgs.cs
- ShapingEngine.cs
- QEncodedStream.cs
- PrtCap_Public.cs
- ImageConverter.cs
- EntityContainerEmitter.cs
- KeyValuePairs.cs
- TextRunTypographyProperties.cs
- ViewEvent.cs
- ChangeTracker.cs
- PageEventArgs.cs
- Effect.cs
- StreamInfo.cs
- HttpRuntime.cs
- DataControlField.cs
- SaveWorkflowCommand.cs
- ISO2022Encoding.cs
- SmiMetaData.cs
- ManifestResourceInfo.cs
- DCSafeHandle.cs
- CircleHotSpot.cs
- UniqueIdentifierService.cs
- Itemizer.cs
- ImageAttributes.cs
- LinkedResource.cs
- RotateTransform3D.cs
- CachedRequestParams.cs
- TdsParserSessionPool.cs
- HtmlAnchor.cs
- TreeNodeCollection.cs