AssemblyBuilder.GetSatelliteAssembly Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a specified satellite assembly.
Overloads
GetSatelliteAssembly(CultureInfo) |
Gets the satellite assembly for the specified culture. |
GetSatelliteAssembly(CultureInfo, Version) |
Gets the specified version of the satellite assembly for the specified culture. |
GetSatelliteAssembly(CultureInfo)
- Source:
- AssemblyBuilder.cs
Gets the satellite assembly for the specified culture.
public:
override System::Reflection::Assembly ^ GetSatelliteAssembly(System::Globalization::CultureInfo ^ culture);
public override System.Reflection.Assembly GetSatelliteAssembly (System.Globalization.CultureInfo culture);
override this.GetSatelliteAssembly : System.Globalization.CultureInfo -> System.Reflection.Assembly
Public Overrides Function GetSatelliteAssembly (culture As CultureInfo) As Assembly
Parameters
- culture
- CultureInfo
The specified culture.
Returns
The specified satellite assembly.
Exceptions
culture
is null
.
The assembly cannot be found.
The satellite assembly with a matching file name was found, but the CultureInfo
did not match the one specified.
The satellite assembly is not a valid assembly.
Remarks
Satellite assemblies contain localized resources, as distinct from main application assemblies, which contain non-localizable executable code and resources for a single culture that serve as the default or neutral culture.
Call this method to use your current assembly version.
Applies to
GetSatelliteAssembly(CultureInfo, Version)
- Source:
- AssemblyBuilder.cs
Gets the specified version of the satellite assembly for the specified culture.
public:
override System::Reflection::Assembly ^ GetSatelliteAssembly(System::Globalization::CultureInfo ^ culture, Version ^ version);
public override System.Reflection.Assembly GetSatelliteAssembly (System.Globalization.CultureInfo culture, Version? version);
public override System.Reflection.Assembly GetSatelliteAssembly (System.Globalization.CultureInfo culture, Version version);
override this.GetSatelliteAssembly : System.Globalization.CultureInfo * Version -> System.Reflection.Assembly
Public Overrides Function GetSatelliteAssembly (culture As CultureInfo, version As Version) As Assembly
Parameters
- culture
- CultureInfo
The specified culture.
- version
- Version
The version of the satellite assembly.
Returns
The specified satellite assembly.
Exceptions
culture
is null
.
The satellite assembly with a matching file name was found, but the CultureInfo
or the version did not match the one specified.
The assembly cannot be found.
The satellite assembly is not a valid assembly.
Remarks
Satellite assemblies contain localized resources, as distinct from main application assemblies, which contain non-localizable executable code and resources for a single culture that serve as the default or neutral culture.
Call the GetSatelliteAssembly(CultureInfo) overload to use your current assembly version.