Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / IO / FileLoadException.cs / 1 / FileLoadException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: FileLoadException ** ** ** Purpose: Exception for failure to load a file that was successfully found. ** ** ===========================================================*/ using System; using System.Globalization; using System.Runtime.Serialization; using System.Runtime.CompilerServices; using System.Security.Permissions; using SecurityException = System.Security.SecurityException; namespace System.IO { [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class FileLoadException : IOException { private String _fileName; // the name of the file we could not load. private String _fusionLog; // fusion log (when applicable) public FileLoadException() : base(Environment.GetResourceString("IO.FileLoad")) { SetErrorCode(__HResults.COR_E_FILELOAD); } public FileLoadException(String message) : base(message) { SetErrorCode(__HResults.COR_E_FILELOAD); } public FileLoadException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_FILELOAD); } public FileLoadException(String message, String fileName) : base(message) { SetErrorCode(__HResults.COR_E_FILELOAD); _fileName = fileName; } public FileLoadException(String message, String fileName, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_FILELOAD); _fileName = fileName; } public override String Message { get { SetMessageField(); return _message; } } private void SetMessageField() { if (_message == null) _message = FormatFileLoadExceptionMessage(_fileName, HResult); } public String FileName { get { return _fileName; } } public override String ToString() { String s = GetType().FullName + ": " + Message; if (_fileName != null && _fileName.Length != 0) s += Environment.NewLine + String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("IO.FileName_Name"), _fileName); if (InnerException != null) s = s + " ---> " + InnerException.ToString(); if (StackTrace != null) s += Environment.NewLine + StackTrace; try { if(FusionLog!=null) { if (s==null) s=" "; s+=Environment.NewLine; s+=Environment.NewLine; s+=FusionLog; } } catch(SecurityException) { } return s; } protected FileLoadException(SerializationInfo info, StreamingContext context) : base (info, context) { // Base class constructor will check info != null. _fileName = info.GetString("FileLoad_FileName"); try { _fusionLog = info.GetString("FileLoad_FusionLog"); } catch { _fusionLog = null; } } private FileLoadException(String fileName, String fusionLog,int hResult) : base(null) { SetErrorCode(hResult); _fileName = fileName; _fusionLog=fusionLog; SetMessageField(); } public String FusionLog { [SecurityPermissionAttribute( SecurityAction.Demand, Flags = SecurityPermissionFlag.ControlEvidence | SecurityPermissionFlag.ControlPolicy)] get { return _fusionLog; } } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { // Serialize data for our base classes. base will verify info != null. base.GetObjectData(info, context); // Serialize data for this class info.AddValue("FileLoad_FileName", _fileName, typeof(String)); try { info.AddValue("FileLoad_FusionLog", FusionLog, typeof(String)); } catch (SecurityException) { } } internal static String FormatFileLoadExceptionMessage(String fileName, int hResult) { return String.Format(CultureInfo.CurrentCulture, GetFileLoadExceptionMessage(hResult), fileName, GetMessageForHR(hResult)); } [MethodImplAttribute(MethodImplOptions.InternalCall)] private static extern String GetFileLoadExceptionMessage(int hResult); [MethodImplAttribute(MethodImplOptions.InternalCall)] private static extern String GetMessageForHR(int hresult); } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- KeyFrames.cs
- XmlStringTable.cs
- MobileControlPersister.cs
- AutoResetEvent.cs
- EventlogProvider.cs
- Misc.cs
- smtppermission.cs
- MetadataFile.cs
- GeneralTransformGroup.cs
- ObjectViewQueryResultData.cs
- ActivityDesignerResources.cs
- CustomAssemblyResolver.cs
- DEREncoding.cs
- BinaryCommonClasses.cs
- HtmlUtf8RawTextWriter.cs
- FormsAuthenticationUserCollection.cs
- SoapEnumAttribute.cs
- ControlValuePropertyAttribute.cs
- BindValidationContext.cs
- DispatchOperation.cs
- FileChangesMonitor.cs
- MemberDescriptor.cs
- PersonalizationAdministration.cs
- ToolStripLocationCancelEventArgs.cs
- VScrollBar.cs
- ByteKeyFrameCollection.cs
- QuestionEventArgs.cs
- WindowsAltTab.cs
- DictionaryTraceRecord.cs
- VersionedStream.cs
- TCEAdapterGenerator.cs
- GridViewHeaderRowPresenter.cs
- ServiceCredentialsSecurityTokenManager.cs
- PersistenceTypeAttribute.cs
- EdmConstants.cs
- TextRange.cs
- DataSourceXmlClassAttribute.cs
- ControlPropertyNameConverter.cs
- ALinqExpressionVisitor.cs
- QilCloneVisitor.cs
- SinglePageViewer.cs
- DetailsViewUpdatedEventArgs.cs
- CodeDOMUtility.cs
- EntitySqlQueryState.cs
- CodeDelegateInvokeExpression.cs
- ScrollData.cs
- DefaultTraceListener.cs
- SessionStateModule.cs
- MainMenu.cs
- StylusPlugInCollection.cs
- EventDriven.cs
- __ComObject.cs
- FileDialogPermission.cs
- LocatorPartList.cs
- EditorPartChrome.cs
- XsdCachingReader.cs
- SqlDependencyUtils.cs
- GroupStyle.cs
- LoadGrammarCompletedEventArgs.cs
- SerTrace.cs
- MimeMapping.cs
- DrawingState.cs
- MimeWriter.cs
- AnchoredBlock.cs
- GPStream.cs
- ObjectToken.cs
- TcpChannelHelper.cs
- HtmlFormWrapper.cs
- CustomError.cs
- ThousandthOfEmRealPoints.cs
- SafeLibraryHandle.cs
- Html32TextWriter.cs
- TypeSystemHelpers.cs
- TreeNodeCollection.cs
- FontStyle.cs
- Vector3DIndependentAnimationStorage.cs
- WebPartTracker.cs
- ExceptionNotification.cs
- ProtocolsConfiguration.cs
- NamespaceMapping.cs
- TypeHelper.cs
- LayoutEditorPart.cs
- FlowDocumentScrollViewer.cs
- QilExpression.cs
- Regex.cs
- DataGridViewLinkCell.cs
- XmlEnumAttribute.cs
- DrawingAttributesDefaultValueFactory.cs
- WinEventTracker.cs
- StaticFileHandler.cs
- XmlNamespaceMappingCollection.cs
- WebConfigurationHostFileChange.cs
- GenericIdentity.cs
- ForeignKeyConstraint.cs
- OleDbErrorCollection.cs
- MetadataSection.cs
- DataSourceXmlSubItemAttribute.cs
- DelegatingConfigHost.cs
- CurrencyWrapper.cs
- TypeConverterAttribute.cs