Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / MissingMethodException.cs / 1 / MissingMethodException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: MissingMethodException ** ** ** 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 MissingMethodException : MissingMemberException, ISerializable { public MissingMethodException() : base(Environment.GetResourceString("Arg_MissingMethodException")) { SetErrorCode(__HResults.COR_E_MISSINGMETHOD); } public MissingMethodException(String message) : base(message) { SetErrorCode(__HResults.COR_E_MISSINGMETHOD); } public MissingMethodException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_MISSINGMETHOD); } protected MissingMethodException(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("MissingMethod_Name", ClassName + "." + MemberName + (Signature != null ? " " + FormatSignature(Signature) : ""))); } } } // Called from the EE private MissingMethodException(String className, String methodName, byte[] signature) { ClassName = className; MemberName = methodName; Signature = signature; } public MissingMethodException(String className, String methodName) { ClassName = className; MemberName = methodName; } // 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: MissingMethodException ** ** ** 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 MissingMethodException : MissingMemberException, ISerializable { public MissingMethodException() : base(Environment.GetResourceString("Arg_MissingMethodException")) { SetErrorCode(__HResults.COR_E_MISSINGMETHOD); } public MissingMethodException(String message) : base(message) { SetErrorCode(__HResults.COR_E_MISSINGMETHOD); } public MissingMethodException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_MISSINGMETHOD); } protected MissingMethodException(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("MissingMethod_Name", ClassName + "." + MemberName + (Signature != null ? " " + FormatSignature(Signature) : ""))); } } } // Called from the EE private MissingMethodException(String className, String methodName, byte[] signature) { ClassName = className; MemberName = methodName; Signature = signature; } public MissingMethodException(String className, String methodName) { ClassName = className; MemberName = methodName; } // 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
- ListViewUpdateEventArgs.cs
- PrinterResolution.cs
- SessionEndingCancelEventArgs.cs
- XamlReaderConstants.cs
- ScriptMethodAttribute.cs
- EllipseGeometry.cs
- ErasingStroke.cs
- DataRecord.cs
- SettingsProperty.cs
- LockCookie.cs
- ExpressionNormalizer.cs
- SpecularMaterial.cs
- ErrorRuntimeConfig.cs
- DataContext.cs
- DesignerAdapterAttribute.cs
- _NetRes.cs
- CatalogZoneBase.cs
- VirtualPathData.cs
- BooleanFunctions.cs
- DataServices.cs
- AmbientLight.cs
- Base64Stream.cs
- HostedBindingBehavior.cs
- Freezable.cs
- BinaryObjectReader.cs
- DefaultPropertyAttribute.cs
- DocumentPageHost.cs
- ProfileManager.cs
- InternalsVisibleToAttribute.cs
- TypeConverter.cs
- XamlWriter.cs
- Input.cs
- DefaultAssemblyResolver.cs
- TaskDesigner.cs
- BaseValidator.cs
- MenuDesigner.cs
- RenderDataDrawingContext.cs
- RectValueSerializer.cs
- TextRunCache.cs
- FixedPage.cs
- DataServiceHost.cs
- ExceptionHandlers.cs
- Underline.cs
- WSSecurityPolicy12.cs
- RequestCacheEntry.cs
- TrueReadOnlyCollection.cs
- UserPersonalizationStateInfo.cs
- Processor.cs
- BamlVersionHeader.cs
- DataIdProcessor.cs
- ListenerElementsCollection.cs
- SuppressMergeCheckAttribute.cs
- MappedMetaModel.cs
- RegexInterpreter.cs
- XmlUtil.cs
- MsmqAppDomainProtocolHandler.cs
- Empty.cs
- UnmanagedMarshal.cs
- Converter.cs
- HashMembershipCondition.cs
- HtmlInputRadioButton.cs
- ThemeableAttribute.cs
- TextElementEnumerator.cs
- ServiceReference.cs
- FixedTextContainer.cs
- SocketPermission.cs
- MimeObjectFactory.cs
- PropertyPanel.cs
- CodeRemoveEventStatement.cs
- LinqDataSourceStatusEventArgs.cs
- EmptyElement.cs
- ColorMap.cs
- WindowAutomationPeer.cs
- SyntaxCheck.cs
- EntitySqlQueryCacheKey.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- MediaElementAutomationPeer.cs
- ThicknessKeyFrameCollection.cs
- StoryFragments.cs
- ProfilePropertySettingsCollection.cs
- GeometryCombineModeValidation.cs
- ResourceIDHelper.cs
- FamilyTypeface.cs
- DirectionalLight.cs
- SingleObjectCollection.cs
- ConfigsHelper.cs
- BitmapEffectInputData.cs
- DataStreams.cs
- BufferBuilder.cs
- NavigateUrlConverter.cs
- PublisherIdentityPermission.cs
- PeerCollaborationPermission.cs
- DynamicMethod.cs
- OleStrCAMarshaler.cs
- PointUtil.cs
- TextRange.cs
- ThemeDirectoryCompiler.cs
- DataSourceDesigner.cs
- GridViewSelectEventArgs.cs
- CellParaClient.cs