Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Resources / MissingSatelliteAssemblyException.cs / 1305376 / MissingSatelliteAssemblyException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: MissingSatelliteAssemblyException ** **[....] ** ** ** Purpose: Exception for a missing satellite assembly needed ** for ultimate resource fallback. This usually ** indicates a setup and/or deployment problem. ** ** ===========================================================*/ using System; using System.Runtime.Serialization; namespace System.Resources { [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class MissingSatelliteAssemblyException : SystemException { private String _cultureName; public MissingSatelliteAssemblyException() : base(Environment.GetResourceString("MissingSatelliteAssembly_Default")) { SetErrorCode(__HResults.COR_E_MISSINGSATELLITEASSEMBLY); } public MissingSatelliteAssemblyException(String message) : base(message) { SetErrorCode(__HResults.COR_E_MISSINGSATELLITEASSEMBLY); } public MissingSatelliteAssemblyException(String message, String cultureName) : base(message) { SetErrorCode(__HResults.COR_E_MISSINGSATELLITEASSEMBLY); _cultureName = cultureName; } public MissingSatelliteAssemblyException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_MISSINGSATELLITEASSEMBLY); } #if FEATURE_SERIALIZATION [System.Security.SecuritySafeCritical] // auto-generated protected MissingSatelliteAssemblyException(SerializationInfo info, StreamingContext context) : base (info, context) { } #endif // FEATURE_SERIALIZATION public String CultureName { get { return _cultureName; } } } } // 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
- AVElementHelper.cs
- ListBoxAutomationPeer.cs
- ADConnectionHelper.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- ClipboardData.cs
- NumberSubstitution.cs
- EditingCoordinator.cs
- ReadWriteObjectLock.cs
- SkipQueryOptionExpression.cs
- OuterGlowBitmapEffect.cs
- DummyDataSource.cs
- UtilityExtension.cs
- XmlChildEnumerator.cs
- DeferredTextReference.cs
- SyndicationItem.cs
- FormsAuthenticationUserCollection.cs
- Propagator.Evaluator.cs
- HttpVersion.cs
- ContextItemManager.cs
- SafeNativeMethods.cs
- Calendar.cs
- DesignerEditorPartChrome.cs
- TargetFrameworkUtil.cs
- TextEndOfParagraph.cs
- SqlCacheDependency.cs
- ElementHostPropertyMap.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- LinqDataSource.cs
- TemplateApplicationHelper.cs
- OrderedHashRepartitionStream.cs
- DocumentCollection.cs
- Semaphore.cs
- WebServiceTypeData.cs
- TransactionState.cs
- CodeThrowExceptionStatement.cs
- AdRotator.cs
- TextElementEnumerator.cs
- DataGridCell.cs
- LocalizationParserHooks.cs
- MetadataCollection.cs
- ThreadInterruptedException.cs
- LinearGradientBrush.cs
- ReadWriteSpinLock.cs
- SelectionRangeConverter.cs
- WebDescriptionAttribute.cs
- ByteStorage.cs
- DataGridComponentEditor.cs
- HttpException.cs
- UidManager.cs
- DefaultValueMapping.cs
- Font.cs
- ResourceReferenceKeyNotFoundException.cs
- XmlUtil.cs
- AssociationType.cs
- Tile.cs
- ResponseBodyWriter.cs
- HtmlTable.cs
- FullTextState.cs
- mediaeventargs.cs
- ItemDragEvent.cs
- BufferedWebEventProvider.cs
- QuerySetOp.cs
- DesignerLoader.cs
- FolderBrowserDialog.cs
- OleDbConnectionInternal.cs
- PropertyMapper.cs
- TableLayout.cs
- WindowsSpinner.cs
- UnknownWrapper.cs
- SourceFilter.cs
- KoreanLunisolarCalendar.cs
- PixelFormat.cs
- ReachDocumentPageSerializer.cs
- Attributes.cs
- loginstatus.cs
- WindowsListViewGroupHelper.cs
- LogEntryHeaderSerializer.cs
- WaitForChangedResult.cs
- ScriptDescriptor.cs
- WsatTransactionInfo.cs
- XComponentModel.cs
- MatchingStyle.cs
- TableCellAutomationPeer.cs
- Model3D.cs
- EdmValidator.cs
- PerformanceCounterTraceRecord.cs
- EntityDataSourceState.cs
- ConfigurationPropertyAttribute.cs
- TlsnegoTokenAuthenticator.cs
- ICspAsymmetricAlgorithm.cs
- TypeDescriptorFilterService.cs
- SymmetricKey.cs
- LinkedResourceCollection.cs
- ActionItem.cs
- DataSourceXmlAttributeAttribute.cs
- GridViewRowPresenter.cs
- BmpBitmapDecoder.cs
- WriterOutput.cs
- ComPlusInstanceContextInitializer.cs
- TableCellAutomationPeer.cs