Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Resources / MissingSatelliteAssemblyException.cs / 1 / 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); } protected MissingSatelliteAssemblyException(SerializationInfo info, StreamingContext context) : base (info, context) { } public String CultureName { get { return _cultureName; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HashAlgorithm.cs
- RegexCaptureCollection.cs
- DocumentGridContextMenu.cs
- SqlUserDefinedAggregateAttribute.cs
- activationcontext.cs
- BuildProvider.cs
- RootProjectionNode.cs
- MessageHeaderDescriptionCollection.cs
- TextEditorContextMenu.cs
- SplineKeyFrames.cs
- ArgumentNullException.cs
- SQLBytes.cs
- PartManifestEntry.cs
- SQLInt64Storage.cs
- GridViewRowPresenterBase.cs
- EffectiveValueEntry.cs
- RemoteWebConfigurationHostServer.cs
- ConstNode.cs
- BitmapMetadataBlob.cs
- ColumnProvider.cs
- InputManager.cs
- baseaxisquery.cs
- CatalogZone.cs
- TextBlock.cs
- CacheChildrenQuery.cs
- DateTimeOffsetStorage.cs
- PolicyLevel.cs
- TypeSystem.cs
- CheckableControlBaseAdapter.cs
- SelectionRange.cs
- QilNode.cs
- SqlHelper.cs
- HMAC.cs
- WebServiceParameterData.cs
- StylusPlugin.cs
- ServiceBuildProvider.cs
- UrlRoutingHandler.cs
- ListenDesigner.cs
- _FixedSizeReader.cs
- ContractNamespaceAttribute.cs
- ThreadAttributes.cs
- MemoryPressure.cs
- ModelPerspective.cs
- OleDbEnumerator.cs
- WebSysDefaultValueAttribute.cs
- HtmlInputButton.cs
- CompilerError.cs
- PartitionResolver.cs
- UriSection.cs
- MenuCommands.cs
- DataGridViewSelectedCellCollection.cs
- DocumentApplicationDocumentViewer.cs
- SecureStringHasher.cs
- WinEventTracker.cs
- WindowsListViewScroll.cs
- ImagingCache.cs
- Sql8ConformanceChecker.cs
- InProcStateClientManager.cs
- elementinformation.cs
- HtmlUtf8RawTextWriter.cs
- VariantWrapper.cs
- DefaultAuthorizationContext.cs
- AutomationProperties.cs
- Logging.cs
- VariableExpressionConverter.cs
- Padding.cs
- BitmapPalettes.cs
- WithParamAction.cs
- PathGeometry.cs
- Pen.cs
- MsmqDiagnostics.cs
- IisTraceWebEventProvider.cs
- Token.cs
- TextPenaltyModule.cs
- DeviceFilterDictionary.cs
- ScriptingRoleServiceSection.cs
- ProviderConnectionPoint.cs
- CodeAttributeDeclaration.cs
- ToolTipService.cs
- ParsedAttributeCollection.cs
- messageonlyhwndwrapper.cs
- HttpCacheVaryByContentEncodings.cs
- HwndPanningFeedback.cs
- AsyncPostBackTrigger.cs
- TypeLoadException.cs
- HttpWriter.cs
- TypeTypeConverter.cs
- SelectionPatternIdentifiers.cs
- ACE.cs
- ManifestResourceInfo.cs
- PageContentCollection.cs
- TaskFormBase.cs
- ObjectPropertyMapping.cs
- CodeGen.cs
- PartManifestEntry.cs
- RijndaelManaged.cs
- VirtualPathUtility.cs
- XmlCharCheckingReader.cs
- ScrollChangedEventArgs.cs
- BinaryParser.cs