Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / xsp / System / Web / Extensions / Compilation / WCFModel / ExternalFile.cs / 1 / 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. //------------------------------------------------------------------------------ // // 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
- SystemIPInterfaceProperties.cs
- InplaceBitmapMetadataWriter.cs
- ZoneMembershipCondition.cs
- SendContent.cs
- TypefaceCollection.cs
- LoginName.cs
- DBCommandBuilder.cs
- HGlobalSafeHandle.cs
- QilCloneVisitor.cs
- MobileSysDescriptionAttribute.cs
- StatusBarItemAutomationPeer.cs
- AssemblyEvidenceFactory.cs
- DataGridViewColumn.cs
- XmlSyndicationContent.cs
- ClosureBinding.cs
- EditorPart.cs
- Dynamic.cs
- HttpFileCollection.cs
- EditableRegion.cs
- HttpWriter.cs
- HttpAsyncResult.cs
- ComNativeDescriptor.cs
- PointCollection.cs
- HitTestParameters.cs
- SecurityNegotiationException.cs
- RelatedView.cs
- XpsPackagingPolicy.cs
- SendReply.cs
- DataGridViewColumnConverter.cs
- TransactionFlowProperty.cs
- InternalBase.cs
- SqlUserDefinedAggregateAttribute.cs
- xmlfixedPageInfo.cs
- EntitySqlQueryBuilder.cs
- BamlMapTable.cs
- InputProviderSite.cs
- OracleEncoding.cs
- UidPropertyAttribute.cs
- InvalidCastException.cs
- TextElement.cs
- ReadOnlyPropertyMetadata.cs
- XmlTextWriter.cs
- EventDrivenDesigner.cs
- baseaxisquery.cs
- Unit.cs
- TextBoxBase.cs
- TaskHelper.cs
- SourceElementsCollection.cs
- DisableDpiAwarenessAttribute.cs
- SizeAnimationBase.cs
- TwoPhaseCommit.cs
- ObjectDataSourceEventArgs.cs
- IsolatedStorage.cs
- ProbeMatchesMessageCD1.cs
- ListBindingHelper.cs
- CompatibleIComparer.cs
- DoubleLinkList.cs
- BitmapEncoder.cs
- contentDescriptor.cs
- cryptoapiTransform.cs
- TreeView.cs
- Directory.cs
- IMembershipProvider.cs
- AsyncStreamReader.cs
- ButtonChrome.cs
- LogicalExpressionTypeConverter.cs
- CriticalExceptions.cs
- AQNBuilder.cs
- KeyValueInternalCollection.cs
- WhitespaceRuleReader.cs
- Helpers.cs
- EditorZoneBase.cs
- UnsafeNativeMethods.cs
- SequentialWorkflowRootDesigner.cs
- ThemeInfoAttribute.cs
- CounterCreationData.cs
- WindowsStatusBar.cs
- DefaultAutoFieldGenerator.cs
- Vector3DCollection.cs
- CompressionTracing.cs
- ResourceAttributes.cs
- NumericUpDownAccelerationCollection.cs
- MinimizableAttributeTypeConverter.cs
- CodeBlockBuilder.cs
- XPathCompileException.cs
- HebrewCalendar.cs
- XmlKeywords.cs
- StdValidatorsAndConverters.cs
- XamlPoint3DCollectionSerializer.cs
- FixUpCollection.cs
- StylusEventArgs.cs
- Base64Decoder.cs
- SqlReferenceCollection.cs
- RequiredFieldValidator.cs
- Vector3DCollectionValueSerializer.cs
- DrawListViewItemEventArgs.cs
- SafeNativeMethods.cs
- GroupJoinQueryOperator.cs
- TimeEnumHelper.cs
- CompressStream.cs