Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / MissingMemberException.cs / 1305376 / MissingMemberException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: MissingMemberException ** ** ** Purpose: The exception class for versioning problems with DLLS. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Remoting; using System.Runtime.Serialization; using System.Runtime.CompilerServices; using System.Globalization; using System.Security.Permissions; using System.Runtime.Versioning; using System.Diagnostics.Contracts; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public class MissingMemberException : MemberAccessException, ISerializable { public MissingMemberException() : base(Environment.GetResourceString("Arg_MissingMemberException")) { SetErrorCode(__HResults.COR_E_MISSINGMEMBER); } public MissingMemberException(String message) : base(message) { SetErrorCode(__HResults.COR_E_MISSINGMEMBER); } public MissingMemberException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_MISSINGMEMBER); } [System.Security.SecuritySafeCritical] // auto-generated protected MissingMemberException(SerializationInfo info, StreamingContext context) : base (info, context) { ClassName = (String)info.GetString("MMClassName"); MemberName = (String)info.GetString("MMMemberName"); Signature = (byte[])info.GetValue("MMSignature", typeof(byte[])); } public override String Message { [System.Security.SecuritySafeCritical] // auto-generated get { if (ClassName == null) { return base.Message; } else { // do any desired fixups to classname here. return Environment.GetResourceString("MissingMember_Name", ClassName + "." + MemberName + (Signature != null ? " " + FormatSignature(Signature) : "")); } } } // Called to format signature [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern String FormatSignature(byte [] signature); // Potentially called from the EE private MissingMemberException(String className, String memberName, byte[] signature) { ClassName = className; MemberName = memberName; Signature = signature; } public MissingMemberException(String className, String memberName) { ClassName = className; MemberName = memberName; } [System.Security.SecurityCritical] // auto-generated_required public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info==null) { throw new ArgumentNullException("info"); } Contract.EndContractBlock(); base.GetObjectData(info, context); info.AddValue("MMClassName", ClassName, typeof(String)); info.AddValue("MMMemberName", MemberName, typeof(String)); info.AddValue("MMSignature", Signature, typeof(byte[])); } // If ClassName != null, GetMessage will construct on the fly using it // and the other variables. This allows customization of the // format depending on the language environment. protected String ClassName; protected String MemberName; protected byte[] Signature; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: MissingMemberException ** ** ** Purpose: The exception class for versioning problems with DLLS. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Remoting; using System.Runtime.Serialization; using System.Runtime.CompilerServices; using System.Globalization; using System.Security.Permissions; using System.Runtime.Versioning; using System.Diagnostics.Contracts; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public class MissingMemberException : MemberAccessException, ISerializable { public MissingMemberException() : base(Environment.GetResourceString("Arg_MissingMemberException")) { SetErrorCode(__HResults.COR_E_MISSINGMEMBER); } public MissingMemberException(String message) : base(message) { SetErrorCode(__HResults.COR_E_MISSINGMEMBER); } public MissingMemberException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_MISSINGMEMBER); } [System.Security.SecuritySafeCritical] // auto-generated protected MissingMemberException(SerializationInfo info, StreamingContext context) : base (info, context) { ClassName = (String)info.GetString("MMClassName"); MemberName = (String)info.GetString("MMMemberName"); Signature = (byte[])info.GetValue("MMSignature", typeof(byte[])); } public override String Message { [System.Security.SecuritySafeCritical] // auto-generated get { if (ClassName == null) { return base.Message; } else { // do any desired fixups to classname here. return Environment.GetResourceString("MissingMember_Name", ClassName + "." + MemberName + (Signature != null ? " " + FormatSignature(Signature) : "")); } } } // Called to format signature [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [MethodImplAttribute(MethodImplOptions.InternalCall)] internal static extern String FormatSignature(byte [] signature); // Potentially called from the EE private MissingMemberException(String className, String memberName, byte[] signature) { ClassName = className; MemberName = memberName; Signature = signature; } public MissingMemberException(String className, String memberName) { ClassName = className; MemberName = memberName; } [System.Security.SecurityCritical] // auto-generated_required public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info==null) { throw new ArgumentNullException("info"); } Contract.EndContractBlock(); base.GetObjectData(info, context); info.AddValue("MMClassName", ClassName, typeof(String)); info.AddValue("MMMemberName", MemberName, typeof(String)); info.AddValue("MMSignature", Signature, typeof(byte[])); } // If ClassName != null, GetMessage will construct on the fly using it // and the other variables. This allows customization of the // format depending on the language environment. protected String ClassName; protected String MemberName; protected byte[] Signature; } } // 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
- SortQueryOperator.cs
- PresentationSource.cs
- DelegateBodyWriter.cs
- DiffuseMaterial.cs
- Tokenizer.cs
- _LoggingObject.cs
- DynamicPropertyHolder.cs
- DataListCommandEventArgs.cs
- DataSourceGroupCollection.cs
- InteropExecutor.cs
- CompilerLocalReference.cs
- WebBrowser.cs
- SafeMILHandleMemoryPressure.cs
- PageOutputColor.cs
- ProfilePropertyNameValidator.cs
- CheckBoxList.cs
- WindowsStatusBar.cs
- SmtpClient.cs
- TypeForwardedToAttribute.cs
- WebPartMenu.cs
- EntityContainerEntitySet.cs
- ConstraintEnumerator.cs
- DbConnectionOptions.cs
- DbParameterCollectionHelper.cs
- XmlLanguageConverter.cs
- ManifestResourceInfo.cs
- Inline.cs
- DataGridTextColumn.cs
- XsltArgumentList.cs
- FontSourceCollection.cs
- TraceSection.cs
- Misc.cs
- _CacheStreams.cs
- XmlNodeReader.cs
- OletxEnlistment.cs
- ToolStripItemTextRenderEventArgs.cs
- SqlBulkCopyColumnMapping.cs
- RegisteredExpandoAttribute.cs
- StrongNamePublicKeyBlob.cs
- CombinedGeometry.cs
- CultureTableRecord.cs
- MSHTMLHost.cs
- HtmlButton.cs
- FormViewDeletedEventArgs.cs
- RectangleGeometry.cs
- FlowLayout.cs
- ConfigurationErrorsException.cs
- EncoderReplacementFallback.cs
- ParseChildrenAsPropertiesAttribute.cs
- SecurityMode.cs
- NativeMethods.cs
- ConstraintStruct.cs
- CompositeFontParser.cs
- Color.cs
- CollectionChangedEventManager.cs
- StartUpEventArgs.cs
- PackagePart.cs
- XamlBrushSerializer.cs
- LogRecordSequence.cs
- TextTreeInsertElementUndoUnit.cs
- SupportsPreviewControlAttribute.cs
- BufferedGraphics.cs
- HttpTransportManager.cs
- TextureBrush.cs
- FrameworkElementFactoryMarkupObject.cs
- StatusCommandUI.cs
- ResourceExpressionBuilder.cs
- BatchParser.cs
- FrameworkTemplate.cs
- ConnectionAcceptor.cs
- ColumnWidthChangingEvent.cs
- Soap11ServerProtocol.cs
- UnsafeNativeMethods.cs
- glyphs.cs
- DynamicDocumentPaginator.cs
- DesignerGeometryHelper.cs
- EntityKey.cs
- SerialPinChanges.cs
- BrowserInteropHelper.cs
- ProcessModelInfo.cs
- XmlSchemaExternal.cs
- ImageAttributes.cs
- GridSplitter.cs
- TypeDescriptor.cs
- GridPatternIdentifiers.cs
- XmlDictionaryWriter.cs
- NamespaceTable.cs
- ExtensionWindow.cs
- OleDbConnectionFactory.cs
- ObjectIDGenerator.cs
- RegexStringValidator.cs
- DbDataReader.cs
- BamlRecordHelper.cs
- ServiceInfo.cs
- jithelpers.cs
- x509store.cs
- StoreItemCollection.cs
- ContextMenu.cs
- ZipIOCentralDirectoryFileHeader.cs
- BoundField.cs