Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / NotSupportedException.cs / 1 / NotSupportedException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: NotSupportedException ** ** ** Purpose: For methods that should be implemented on subclasses. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Serialization; [System.Runtime.InteropServices.ComVisible(true)] [Serializable()] public class NotSupportedException : SystemException { public NotSupportedException() : base(Environment.GetResourceString("Arg_NotSupportedException")) { SetErrorCode(__HResults.COR_E_NOTSUPPORTED); } public NotSupportedException(String message) : base(message) { SetErrorCode(__HResults.COR_E_NOTSUPPORTED); } public NotSupportedException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_NOTSUPPORTED); } protected NotSupportedException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Tokenizer.cs
- XmlJsonReader.cs
- ToolStripComboBox.cs
- MediaContext.cs
- ExpressionBindingsDialog.cs
- DeflateEmulationStream.cs
- SecurityUtils.cs
- DragDropManager.cs
- TransformConverter.cs
- GroupLabel.cs
- JournalEntryListConverter.cs
- SchemaTableOptionalColumn.cs
- HtmlForm.cs
- DataTableReader.cs
- BufferedStream.cs
- WebServiceFaultDesigner.cs
- PageThemeCodeDomTreeGenerator.cs
- ToolStripOverflowButton.cs
- ImageField.cs
- _SingleItemRequestCache.cs
- Literal.cs
- WeakReadOnlyCollection.cs
- ThreadAbortException.cs
- SqlOuterApplyReducer.cs
- Hashtable.cs
- ValidatedControlConverter.cs
- ChtmlPhoneCallAdapter.cs
- FileDialogCustomPlacesCollection.cs
- ClientSettings.cs
- DependencyPropertyKey.cs
- DialogResultConverter.cs
- SecurityTokenSerializer.cs
- DefaultObjectSerializer.cs
- SecurityRuntime.cs
- ArrayConverter.cs
- UserControl.cs
- HTMLTextWriter.cs
- AllMembershipCondition.cs
- TextModifierScope.cs
- DispatcherObject.cs
- WebPartDescription.cs
- FixedElement.cs
- ClientEventManager.cs
- PeerNameRecord.cs
- DataGridViewLinkCell.cs
- PageBuildProvider.cs
- COAUTHINFO.cs
- PropertyKey.cs
- TransactionalPackage.cs
- CookieHandler.cs
- ReachObjectContext.cs
- VisualTreeUtils.cs
- DataTableTypeConverter.cs
- SqlDependencyListener.cs
- XmlDocumentFragment.cs
- SetStateEventArgs.cs
- XmlNamedNodeMap.cs
- Path.cs
- DataGridColumn.cs
- CustomErrorsSection.cs
- SelectionProcessor.cs
- DataGridViewSelectedCellCollection.cs
- Crypto.cs
- ScrollViewer.cs
- Activator.cs
- TemplateField.cs
- ReachNamespaceInfo.cs
- XmlSchemaExporter.cs
- SequentialUshortCollection.cs
- safesecurityhelperavalon.cs
- xmlglyphRunInfo.cs
- TileModeValidation.cs
- GroupDescription.cs
- HttpDebugHandler.cs
- HighlightVisual.cs
- EntityClientCacheKey.cs
- AliasGenerator.cs
- RelationshipType.cs
- UnionExpr.cs
- CompilerParameters.cs
- DependencySource.cs
- NetCodeGroup.cs
- ToolStripItemImageRenderEventArgs.cs
- LineInfo.cs
- SourceChangedEventArgs.cs
- PhysicalFontFamily.cs
- datacache.cs
- CreateParams.cs
- TextTrailingCharacterEllipsis.cs
- PagesChangedEventArgs.cs
- HtmlGenericControl.cs
- TaiwanCalendar.cs
- ErrorFormatter.cs
- HuffModule.cs
- TextTreeInsertUndoUnit.cs
- MimeObjectFactory.cs
- streamingZipPartStream.cs
- UpdateRecord.cs
- WebContext.cs
- TraceHandlerErrorFormatter.cs