Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Threading / SynchronizationLockException.cs / 1 / SynchronizationLockException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: SynchronizationLockException ** ** ** Purpose: Wait(), Notify() or NotifyAll() was called from an unsynchronized ** block of code. ** ** =============================================================================*/ namespace System.Threading { using System; using System.Runtime.Serialization; [System.Runtime.InteropServices.ComVisible(true)] [Serializable()] public class SynchronizationLockException : SystemException { public SynchronizationLockException() : base(Environment.GetResourceString("Arg_SynchronizationLockException")) { SetErrorCode(__HResults.COR_E_SYNCHRONIZATIONLOCK); } public SynchronizationLockException(String message) : base(message) { SetErrorCode(__HResults.COR_E_SYNCHRONIZATIONLOCK); } public SynchronizationLockException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_SYNCHRONIZATIONLOCK); } protected SynchronizationLockException(SerializationInfo info, StreamingContext context) : base (info, context) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataSourceControlBuilder.cs
- IUnknownConstantAttribute.cs
- BitmapEffectInput.cs
- MSAANativeProvider.cs
- AdvancedBindingEditor.cs
- DataBoundControlActionList.cs
- VarRefManager.cs
- Utils.cs
- CaseInsensitiveHashCodeProvider.cs
- ComponentFactoryHelpers.cs
- WebPartConnectionCollection.cs
- SqlCommand.cs
- WebPartAuthorizationEventArgs.cs
- IsolatedStorageFileStream.cs
- ExtendedProtectionPolicyElement.cs
- XmlProcessingInstruction.cs
- DetailsViewRowCollection.cs
- securitycriticaldata.cs
- XmlSchemaObject.cs
- ConnectionConsumerAttribute.cs
- SoapSchemaExporter.cs
- UnsafeNativeMethods.cs
- RangeValidator.cs
- UIElementParagraph.cs
- EventHandlerList.cs
- categoryentry.cs
- SqlGenericUtil.cs
- BackgroundWorker.cs
- SqlException.cs
- ImageDesigner.cs
- XslTransform.cs
- GradientStop.cs
- CaseInsensitiveOrdinalStringComparer.cs
- OptionUsage.cs
- RightsManagementEncryptedStream.cs
- WriteableBitmap.cs
- SqlDataRecord.cs
- DataBoundControlAdapter.cs
- ByteRangeDownloader.cs
- UserControlParser.cs
- Variable.cs
- NavigationFailedEventArgs.cs
- BindingWorker.cs
- PropertyEmitter.cs
- TextTrailingWordEllipsis.cs
- LocationSectionRecord.cs
- HttpCookie.cs
- SatelliteContractVersionAttribute.cs
- WhitespaceReader.cs
- DocumentGridContextMenu.cs
- GridProviderWrapper.cs
- PeerApplicationLaunchInfo.cs
- ShowExpandedMultiValueConverter.cs
- HelpInfo.cs
- SignatureGenerator.cs
- RoleProviderPrincipal.cs
- XmlTypeAttribute.cs
- ReadOnlyHierarchicalDataSource.cs
- BinaryWriter.cs
- UnsafeNativeMethods.cs
- serverconfig.cs
- WorkflowInstanceExtensionProvider.cs
- ProfileBuildProvider.cs
- ErrorStyle.cs
- MaskedTextBoxTextEditor.cs
- IncrementalCompileAnalyzer.cs
- HMACSHA512.cs
- EventLogPermissionAttribute.cs
- QueryCreatedEventArgs.cs
- EmptyReadOnlyDictionaryInternal.cs
- XmlSerializationReader.cs
- PropertyInformationCollection.cs
- DataSourceView.cs
- BrowserDefinitionCollection.cs
- DynamicRouteExpression.cs
- JsonDeserializer.cs
- StringToken.cs
- ApplicationFileCodeDomTreeGenerator.cs
- LoginUtil.cs
- PropertyConverter.cs
- RequestQueryProcessor.cs
- ParsedRoute.cs
- DataPointer.cs
- CookieProtection.cs
- DurableInstanceManager.cs
- SatelliteContractVersionAttribute.cs
- RowToParametersTransformer.cs
- SingleTagSectionHandler.cs
- BaseDataList.cs
- BrowserInteropHelper.cs
- SharedPerformanceCounter.cs
- DbConnectionPool.cs
- Geometry3D.cs
- WebResponse.cs
- LiteralLink.cs
- InkSerializer.cs
- Zone.cs
- SchemaCollectionCompiler.cs
- CookieHandler.cs
- SynchronizingStream.cs