Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Threading / SynchronizationLockException.cs / 1305376 / 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); } [System.Security.SecuritySafeCritical] // auto-generated protected SynchronizationLockException(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
- CodeStatement.cs
- VirtualPath.cs
- HttpVersion.cs
- LabelLiteral.cs
- PnrpPermission.cs
- Size.cs
- MemberInfoSerializationHolder.cs
- ScriptControlDescriptor.cs
- ThicknessAnimationUsingKeyFrames.cs
- CounterCreationData.cs
- CompressStream.cs
- EdmFunctionAttribute.cs
- XpsDigitalSignature.cs
- ProfileService.cs
- BmpBitmapEncoder.cs
- ConfigurationElementProperty.cs
- TrackingMemoryStreamFactory.cs
- DataServiceQueryException.cs
- HandlerBase.cs
- SessionIDManager.cs
- SqlDataSourceCache.cs
- PropertyConverter.cs
- HttpRawResponse.cs
- SqlConnectionHelper.cs
- ActivityCodeDomReferenceService.cs
- SqlBulkCopy.cs
- SchemaName.cs
- PeerNearMe.cs
- WSHttpSecurity.cs
- DataSourceViewSchemaConverter.cs
- MergeFailedEvent.cs
- SqlCommandSet.cs
- GenerateScriptTypeAttribute.cs
- IntersectQueryOperator.cs
- DataGridViewCellEventArgs.cs
- TabPanel.cs
- SafeHandle.cs
- FormatStringEditor.cs
- ObjectReferenceStack.cs
- WebExceptionStatus.cs
- WorkflowService.cs
- ExtentJoinTreeNode.cs
- GC.cs
- DetailsViewInsertedEventArgs.cs
- Vars.cs
- TextEditorDragDrop.cs
- LabelDesigner.cs
- DataReaderContainer.cs
- DataViewSetting.cs
- DataSourceCache.cs
- DisableDpiAwarenessAttribute.cs
- KnownTypes.cs
- IdentityReference.cs
- Identity.cs
- UseLicense.cs
- RegistrationServices.cs
- LabelLiteral.cs
- TableLayoutCellPaintEventArgs.cs
- ColorMatrix.cs
- AutomationPropertyInfo.cs
- WindowsListViewGroup.cs
- DocumentReferenceCollection.cs
- PopupRoot.cs
- GlyphElement.cs
- TextBox.cs
- FlowDocument.cs
- CaseInsensitiveHashCodeProvider.cs
- activationcontext.cs
- PrimaryKeyTypeConverter.cs
- FileChangesMonitor.cs
- TransportChannelFactory.cs
- ComAdminWrapper.cs
- TypedDataSourceCodeGenerator.cs
- UIElement3D.cs
- ContentElementAutomationPeer.cs
- QuaternionValueSerializer.cs
- CorrelationManager.cs
- GetPageCompletedEventArgs.cs
- ZeroOpNode.cs
- WindowsToolbar.cs
- Model3DGroup.cs
- InstallerTypeAttribute.cs
- CurrencyWrapper.cs
- ObjectNavigationPropertyMapping.cs
- SimpleHandlerFactory.cs
- AppPool.cs
- StreamedWorkflowDefinitionContext.cs
- FillRuleValidation.cs
- EntityDesignPluralizationHandler.cs
- DragDeltaEventArgs.cs
- DetailsViewInsertedEventArgs.cs
- XmlAttribute.cs
- PathSegment.cs
- CodeSnippetExpression.cs
- MarkedHighlightComponent.cs
- IndividualDeviceConfig.cs
- AssemblyResolver.cs
- Model3D.cs
- PTManager.cs
- PropertyCollection.cs