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
- TableLayoutStyle.cs
- DispatchWrapper.cs
- AsynchronousChannel.cs
- StorageComplexPropertyMapping.cs
- ExpressionEditorAttribute.cs
- TextBox.cs
- Keywords.cs
- BinaryWriter.cs
- DataGridViewColumnCollection.cs
- DeclarativeCatalogPart.cs
- ObjectViewListener.cs
- WebBrowserNavigatingEventHandler.cs
- TextContainer.cs
- TreeView.cs
- util.cs
- UnsafeNativeMethods.cs
- MenuDesigner.cs
- HotSpotCollection.cs
- CellParaClient.cs
- LayeredChannelFactory.cs
- NotCondition.cs
- IIS7WorkerRequest.cs
- XmlAttributeCache.cs
- WebPartDisplayMode.cs
- DoubleLinkList.cs
- basevalidator.cs
- TemplatedMailWebEventProvider.cs
- AnnotationAdorner.cs
- GenericsInstances.cs
- BitmapEffectInput.cs
- ReadOnlyDataSourceView.cs
- OdbcConnectionOpen.cs
- SortQueryOperator.cs
- DependencyPropertyValueSerializer.cs
- DatasetMethodGenerator.cs
- ConfigXmlAttribute.cs
- Math.cs
- RegionIterator.cs
- KnownTypesHelper.cs
- UrlAuthorizationModule.cs
- TrackingStringDictionary.cs
- XmlSchemaAnnotation.cs
- DataGridViewCellEventArgs.cs
- PropertyToken.cs
- DataGridViewTopRowAccessibleObject.cs
- TraceEventCache.cs
- ToolTipService.cs
- StrokeNodeEnumerator.cs
- EventRouteFactory.cs
- DataGridCommandEventArgs.cs
- CounterSet.cs
- TabletDevice.cs
- DataSourceHelper.cs
- RawStylusInputCustomData.cs
- DataGridViewComponentPropertyGridSite.cs
- Stylus.cs
- ApplicationFileParser.cs
- SqlConnectionHelper.cs
- XmlSchemaSimpleContent.cs
- Converter.cs
- WindowHideOrCloseTracker.cs
- Interlocked.cs
- FormViewInsertedEventArgs.cs
- InstanceCreationEditor.cs
- LogEntryHeaderv1Deserializer.cs
- OptimizedTemplateContentHelper.cs
- DrawListViewSubItemEventArgs.cs
- EndpointDiscoveryBehavior.cs
- Resources.Designer.cs
- EncodingDataItem.cs
- ThousandthOfEmRealPoints.cs
- IdentitySection.cs
- TTSEngineTypes.cs
- WorkflowRuntime.cs
- DelegatedStream.cs
- TextFormatterImp.cs
- _UriTypeConverter.cs
- URI.cs
- NavigatorInput.cs
- ResXDataNode.cs
- XmlNamespaceDeclarationsAttribute.cs
- DesignTimeTemplateParser.cs
- Calendar.cs
- FigureParagraph.cs
- MenuItemBinding.cs
- DataGridColumnHeaderItemAutomationPeer.cs
- XPathDocumentBuilder.cs
- Light.cs
- XmlBinaryWriter.cs
- DockAndAnchorLayout.cs
- MarshalByRefObject.cs
- BinaryObjectInfo.cs
- CurrentChangingEventArgs.cs
- BrowserTree.cs
- SafeFileMappingHandle.cs
- Verify.cs
- FormsAuthenticationConfiguration.cs
- BitmapEffectOutputConnector.cs
- PathGeometry.cs
- UpdateExpressionVisitor.cs