MissingManifestResourceException Class

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Updated: October 2010

The exception thrown if the main assembly does not contain the resources for the neutral culture, and they are required because of a missing appropriate satellite assembly.

Inheritance Hierarchy

System.Object
  System.Exception
    System.SystemException
      System.Resources.MissingManifestResourceException

Namespace:  System.Resources
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
<ComVisibleAttribute(True)> _
Public Class MissingManifestResourceException _
    Inherits SystemException
[ComVisibleAttribute(true)]
public class MissingManifestResourceException : SystemException

The MissingManifestResourceException type exposes the following members.

Constructors

  Name Description
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 MissingManifestResourceException() Initializes a new instance of the MissingManifestResourceException class with default properties.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 MissingManifestResourceException(String) Initializes a new instance of the MissingManifestResourceException class with the specified error message.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 MissingManifestResourceException(String, Exception) Initializes a new instance of the MissingManifestResourceException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Top

Properties

  Name Description
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 Data Gets a collection of key/value pairs that provide additional user-defined information about the exception. (Inherited from Exception.)
Protected propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 HResult Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception. (Inherited from Exception.)
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 InnerException Gets the Exception instance that caused the current exception. (Inherited from Exception.)
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 Message Gets a message that describes the current exception. (Inherited from Exception.)
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 StackTrace Gets a string representation of the frames on the call stack at the time the current exception was thrown. (Inherited from Exception.)

Top

Methods

  Name Description
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetBaseException When overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions. (Inherited from Exception.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetType Gets the runtime type of the current instance. (Inherited from Exception.)
Protected methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 ToString Creates and returns a string representation of the current exception. (Inherited from Exception.)

Top

Remarks

A MissingManifestResourceException is thrown when the attempt to retrieve a resource fails because the resource set for the neutral culture could not be loaded from a particular assembly. Note that even though the exception is thrown when you attempt to retrieve a particular resource, it is caused by the failure to load the resource set rather than the failure to find the resource. The main causes of the exception include the following:

  • The resource set is not identified by its fully qualified name. For example, if the baseName parameter in the call to the ResourceManager.ResourceManager(String, Assembly) method includes the root name of the resource set without a namespace, but the resource set is assigned a namespace when it is stored in its assembly, the call to the ResourceManager.GetStringmethod throws this exception. You can determine the namespace of the resource set by examining its assembly with a reflection tool such as Ildasm.exe.

  • The resource set is identified by its resource file name and its file extension. For example, this exception is thrown if the neutral culture's resource set is named GlobalResources and you supply a value of "GlobalResources.resources" to the baseName parameter of the ResourceManager.ResourceManager(String, Assembly) constructor.

  • The culture-specific resource set identified in a method call cannot be found, and the fallback resource set cannot be loaded. For example, if you create satellite assemblies for the English (United States) and Russia (Russian) cultures but you fail to provide a resource set for the neutral culture, this exception is thrown if your application's current culture is English (Great Britain).

For a list of initial property values for an instance of MissingManifestResourceException, see the MissingManifestResourceException constructors.

NoteNote:

We strongly recommend that your main assembly contain a neutral set of resources, so if a satellite assembly is unavailable, your application will not fail.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Change History

Date

History

Reason

October 2010

Added a discussion of exception causes to the Remarks section.

Customer feedback.