Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / MissingFieldException.cs / 1 / MissingFieldException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: MissingFieldException ** ** Purpose: The exception class for class loading failures. ** =============================================================================*/ namespace System { using System; using System.Runtime.Remoting; using System.Runtime.Serialization; using System.Runtime.CompilerServices; using System.Globalization; [System.Runtime.InteropServices.ComVisible(true)] [Serializable()] public class MissingFieldException : MissingMemberException, ISerializable { public MissingFieldException() : base(Environment.GetResourceString("Arg_MissingFieldException")) { SetErrorCode(__HResults.COR_E_MISSINGFIELD); } public MissingFieldException(String message) : base(message) { SetErrorCode(__HResults.COR_E_MISSINGFIELD); } public MissingFieldException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_MISSINGFIELD); } protected MissingFieldException(SerializationInfo info, StreamingContext context) : base(info, context) { } public override String Message { get { if (ClassName == null) { return base.Message; } else { // do any desired fixups to classname here. return String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("MissingField_Name", (Signature != null ? FormatSignature(Signature) + " " : "") + ClassName + "." + MemberName)); } } } // Called from the EE private MissingFieldException(String className, String fieldName, byte[] signature) { ClassName = className; MemberName = fieldName; Signature = signature; } public MissingFieldException(String className, String fieldName) { ClassName = className; MemberName = fieldName; } // If ClassName != null, Message will construct on the fly using it // and the other variables. This allows customization of the // format depending on the language environment. } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: MissingFieldException ** ** Purpose: The exception class for class loading failures. ** =============================================================================*/ namespace System { using System; using System.Runtime.Remoting; using System.Runtime.Serialization; using System.Runtime.CompilerServices; using System.Globalization; [System.Runtime.InteropServices.ComVisible(true)] [Serializable()] public class MissingFieldException : MissingMemberException, ISerializable { public MissingFieldException() : base(Environment.GetResourceString("Arg_MissingFieldException")) { SetErrorCode(__HResults.COR_E_MISSINGFIELD); } public MissingFieldException(String message) : base(message) { SetErrorCode(__HResults.COR_E_MISSINGFIELD); } public MissingFieldException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_MISSINGFIELD); } protected MissingFieldException(SerializationInfo info, StreamingContext context) : base(info, context) { } public override String Message { get { if (ClassName == null) { return base.Message; } else { // do any desired fixups to classname here. return String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("MissingField_Name", (Signature != null ? FormatSignature(Signature) + " " : "") + ClassName + "." + MemberName)); } } } // Called from the EE private MissingFieldException(String className, String fieldName, byte[] signature) { ClassName = className; MemberName = fieldName; Signature = signature; } public MissingFieldException(String className, String fieldName) { ClassName = className; MemberName = fieldName; } // If ClassName != null, Message will construct on the fly using it // and the other variables. This allows customization of the // format depending on the language environment. } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExpressionEditorAttribute.cs
- AutoGeneratedFieldProperties.cs
- ImageField.cs
- documentation.cs
- CodeTypeMember.cs
- StrongName.cs
- MdiWindowListStrip.cs
- Vector3dCollection.cs
- OracleRowUpdatingEventArgs.cs
- FieldToken.cs
- SoapSchemaImporter.cs
- BinaryParser.cs
- ToolStripOverflow.cs
- TreeNodeSelectionProcessor.cs
- StrokeFIndices.cs
- NonNullItemCollection.cs
- EntityDataSourceConfigureObjectContext.cs
- IsolatedStoragePermission.cs
- WebRequest.cs
- IOException.cs
- UnmanagedMemoryStreamWrapper.cs
- ResourceExpression.cs
- DataTableReader.cs
- OperandQuery.cs
- SizeAnimationClockResource.cs
- _BasicClient.cs
- Pens.cs
- DeleteHelper.cs
- RadioButton.cs
- TrustManager.cs
- smtpconnection.cs
- SafeArrayTypeMismatchException.cs
- AspNetSynchronizationContext.cs
- FileDataSourceCache.cs
- Int32Rect.cs
- LinkUtilities.cs
- TreeView.cs
- TrustLevel.cs
- FlowDocumentPaginator.cs
- SQLBytesStorage.cs
- ServiceConfigurationTraceRecord.cs
- LinqDataSourceInsertEventArgs.cs
- InitialServerConnectionReader.cs
- MetabaseServerConfig.cs
- GeneratedView.cs
- Baml2006Reader.cs
- ResizeGrip.cs
- DoubleConverter.cs
- InfoCardClaim.cs
- BadImageFormatException.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- TransactionProxy.cs
- SiteMapDataSourceDesigner.cs
- ScriptingWebServicesSectionGroup.cs
- WorkflowExecutor.cs
- UnhandledExceptionEventArgs.cs
- ArgumentDesigner.xaml.cs
- XsltConvert.cs
- TemplateBuilder.cs
- Event.cs
- ChannelBinding.cs
- LocalBuilder.cs
- Storyboard.cs
- ForceCopyBuildProvider.cs
- CuspData.cs
- Soap12ProtocolImporter.cs
- SimpleHandlerFactory.cs
- ObjectParameterCollection.cs
- WebMessageEncoderFactory.cs
- Content.cs
- EndpointAddressProcessor.cs
- MenuItemAutomationPeer.cs
- PathParser.cs
- EmbeddedObject.cs
- Events.cs
- TypeUnloadedException.cs
- VerticalAlignConverter.cs
- sortedlist.cs
- ServiceDeploymentInfo.cs
- DataServiceExpressionVisitor.cs
- FtpRequestCacheValidator.cs
- CancellationTokenSource.cs
- WSSecureConversationDec2005.cs
- ImageMap.cs
- WebPartVerbCollection.cs
- GraphicsContext.cs
- ImplicitInputBrush.cs
- DatagridviewDisplayedBandsData.cs
- CaseKeyBox.ViewModel.cs
- BuildProvidersCompiler.cs
- TextInfo.cs
- Attribute.cs
- HotSpot.cs
- Input.cs
- NetSectionGroup.cs
- TransformPattern.cs
- VerificationException.cs
- SecurityVerifiedMessage.cs
- HuffCodec.cs
- EntityDataSourceSelectedEventArgs.cs