Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Threading / ThreadInterruptedException.cs / 1305376 / ThreadInterruptedException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // //[....] /*============================================================================== ** ** Class: ThreadInterruptedException ** ** ** Purpose: An exception class to indicate that the thread was interrupted ** from a waiting state. ** ** =============================================================================*/ namespace System.Threading { using System.Threading; using System; using System.Runtime.Serialization; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public class ThreadInterruptedException : SystemException { public ThreadInterruptedException() : base(GetMessageFromNativeResources(ExceptionMessageKind.ThreadInterrupted)) { SetErrorCode(__HResults.COR_E_THREADINTERRUPTED); } public ThreadInterruptedException(String message) : base(message) { SetErrorCode(__HResults.COR_E_THREADINTERRUPTED); } public ThreadInterruptedException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_THREADINTERRUPTED); } [System.Security.SecuritySafeCritical] // auto-generated protected ThreadInterruptedException(SerializationInfo info, StreamingContext context) : base (info, context) { } } } // 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
- TypeConverterHelper.cs
- InternalConfigHost.cs
- DateRangeEvent.cs
- DesignBindingPropertyDescriptor.cs
- PropertyChangedEventArgs.cs
- TimeSpanMinutesConverter.cs
- DirectionalLight.cs
- AttachedAnnotationChangedEventArgs.cs
- EventHandlersStore.cs
- DeflateEmulationStream.cs
- ContextInformation.cs
- CodeExporter.cs
- DesignerCategoryAttribute.cs
- util.cs
- NamespaceInfo.cs
- BitmapImage.cs
- EntitySqlException.cs
- EntityDataSourceSelectedEventArgs.cs
- IRCollection.cs
- XhtmlConformanceSection.cs
- GatewayDefinition.cs
- ClientConfigurationSystem.cs
- Queue.cs
- WrappedIUnknown.cs
- SplineKeyFrames.cs
- FeatureSupport.cs
- VarRemapper.cs
- SpinLock.cs
- PerformanceCountersElement.cs
- PathNode.cs
- CryptoProvider.cs
- SerialPinChanges.cs
- ConfigXmlText.cs
- EventItfInfo.cs
- WindowsListViewItemCheckBox.cs
- StringValidator.cs
- XmlSerializerVersionAttribute.cs
- RewritingValidator.cs
- Calendar.cs
- MarkerProperties.cs
- StringUtil.cs
- EncryptedKey.cs
- FontEmbeddingManager.cs
- SystemIPInterfaceStatistics.cs
- FileSecurity.cs
- PropertyPath.cs
- SchemaTypeEmitter.cs
- CommandCollectionEditor.cs
- ObjectAssociationEndMapping.cs
- WindowsImpersonationContext.cs
- DynamicRendererThreadManager.cs
- FloatMinMaxAggregationOperator.cs
- ClientReliableChannelBinder.cs
- MetadataArtifactLoaderFile.cs
- wgx_sdk_version.cs
- _SpnDictionary.cs
- PersonalizablePropertyEntry.cs
- PlainXmlDeserializer.cs
- XmlCountingReader.cs
- DesignerTransaction.cs
- DataProtection.cs
- WebRequestModuleElementCollection.cs
- SoapBinding.cs
- CookielessData.cs
- SecurityDescriptor.cs
- DesignerDeviceConfig.cs
- shaperfactoryquerycacheentry.cs
- TextEditorTyping.cs
- AssemblyCollection.cs
- MultiView.cs
- QueueSurrogate.cs
- RegistryPermission.cs
- DateTimeOffsetAdapter.cs
- ClosureBinding.cs
- CorrelationTokenInvalidatedHandler.cs
- NeutralResourcesLanguageAttribute.cs
- DataObject.cs
- SystemTcpStatistics.cs
- DragDrop.cs
- TabItemAutomationPeer.cs
- MissingSatelliteAssemblyException.cs
- MouseDevice.cs
- AnnotationStore.cs
- ToolStripSeparatorRenderEventArgs.cs
- GreenMethods.cs
- MemberMaps.cs
- SQLInt16Storage.cs
- AggregateNode.cs
- MenuScrollingVisibilityConverter.cs
- MsmqAppDomainProtocolHandler.cs
- ConstraintManager.cs
- FlowLayoutSettings.cs
- NotSupportedException.cs
- PublishLicense.cs
- RemotingSurrogateSelector.cs
- SessionStateUtil.cs
- Base64Decoder.cs
- SettingsPropertyCollection.cs
- Activity.cs
- EmptyImpersonationContext.cs