Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Util / WorkItem.cs / 1305376 / WorkItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Util { using System.Runtime.InteropServices; using System.Security.Permissions; using System.Threading; // // Support for positing of work items to a different thread // ////// public delegate void WorkItemCallback(); ///[To be supplied.] ////// public class WorkItem { private static bool _useQueueUserWorkItem = true; private static WaitCallback _onQueueUserWorkItemCompletion = new WaitCallback(OnQueueUserWorkItemCompletion); ///[To be supplied.] ////// [SecurityPermission(SecurityAction.Demand, Unrestricted=true)] public static void Post(WorkItemCallback callback) { #if !FEATURE_PAL // ROTORTODO if (Environment.OSVersion.Platform != PlatformID.Win32NT) throw new PlatformNotSupportedException(SR.GetString(SR.RequiresNT)); #else // !FEATURE_PAL throw new NotImplementedException("ROTORTODO"); #endif // !FEATURE_PAL PostInternal(callback); } // assert to disregard the user code up the compressed stack [PermissionSet(SecurityAction.Assert, Unrestricted=true)] private static void CallCallbackWithAssert(WorkItemCallback callback) { callback(); } private static void OnQueueUserWorkItemCompletion(Object state) { WorkItemCallback callback = state as WorkItemCallback; if (callback != null) { CallCallbackWithAssert(callback); } } internal static void PostInternal(WorkItemCallback callback) { if (_useQueueUserWorkItem) { ThreadPool.QueueUserWorkItem(_onQueueUserWorkItemCompletion, callback); } else { WrappedWorkItemCallback w = new WrappedWorkItemCallback(callback); w.Post(); } } } internal class WrappedWorkItemCallback { private GCHandle _rootedThis; private WorkItemCallback _originalCallback; private WorkItemCallback _wrapperCallback; internal WrappedWorkItemCallback(WorkItemCallback callback) { _originalCallback = callback; _wrapperCallback = new WorkItemCallback(this.OnCallback); } internal void Post() { _rootedThis = GCHandle.Alloc(this); if (UnsafeNativeMethods.PostThreadPoolWorkItem(_wrapperCallback) != 1) { _rootedThis.Free(); throw new HttpException(SR.GetString(SR.Cannot_post_workitem)); } } private void OnCallback() { _rootedThis.Free(); _originalCallback(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Util { using System.Runtime.InteropServices; using System.Security.Permissions; using System.Threading; // // Support for positing of work items to a different thread // ////// public delegate void WorkItemCallback(); ///[To be supplied.] ////// public class WorkItem { private static bool _useQueueUserWorkItem = true; private static WaitCallback _onQueueUserWorkItemCompletion = new WaitCallback(OnQueueUserWorkItemCompletion); ///[To be supplied.] ////// [SecurityPermission(SecurityAction.Demand, Unrestricted=true)] public static void Post(WorkItemCallback callback) { #if !FEATURE_PAL // ROTORTODO if (Environment.OSVersion.Platform != PlatformID.Win32NT) throw new PlatformNotSupportedException(SR.GetString(SR.RequiresNT)); #else // !FEATURE_PAL throw new NotImplementedException("ROTORTODO"); #endif // !FEATURE_PAL PostInternal(callback); } // assert to disregard the user code up the compressed stack [PermissionSet(SecurityAction.Assert, Unrestricted=true)] private static void CallCallbackWithAssert(WorkItemCallback callback) { callback(); } private static void OnQueueUserWorkItemCompletion(Object state) { WorkItemCallback callback = state as WorkItemCallback; if (callback != null) { CallCallbackWithAssert(callback); } } internal static void PostInternal(WorkItemCallback callback) { if (_useQueueUserWorkItem) { ThreadPool.QueueUserWorkItem(_onQueueUserWorkItemCompletion, callback); } else { WrappedWorkItemCallback w = new WrappedWorkItemCallback(callback); w.Post(); } } } internal class WrappedWorkItemCallback { private GCHandle _rootedThis; private WorkItemCallback _originalCallback; private WorkItemCallback _wrapperCallback; internal WrappedWorkItemCallback(WorkItemCallback callback) { _originalCallback = callback; _wrapperCallback = new WorkItemCallback(this.OnCallback); } internal void Post() { _rootedThis = GCHandle.Alloc(this); if (UnsafeNativeMethods.PostThreadPoolWorkItem(_wrapperCallback) != 1) { _rootedThis.Free(); throw new HttpException(SR.GetString(SR.Cannot_post_workitem)); } } private void OnCallback() { _rootedThis.Free(); _originalCallback(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- InputLanguage.cs
- XmlSchemaFacet.cs
- SafeArrayTypeMismatchException.cs
- HtmlInputRadioButton.cs
- Base64WriteStateInfo.cs
- Crypto.cs
- Italic.cs
- COM2ComponentEditor.cs
- AxisAngleRotation3D.cs
- BitmapEffect.cs
- ListCollectionView.cs
- QilBinary.cs
- Propagator.Evaluator.cs
- CompositeScriptReference.cs
- ConfigurationManagerHelper.cs
- RowSpanVector.cs
- BaseDataList.cs
- RectValueSerializer.cs
- GridViewRowEventArgs.cs
- MenuItemBindingCollection.cs
- propertytag.cs
- HelloMessageCD1.cs
- X509ChainPolicy.cs
- AuthorizationSection.cs
- PaintEvent.cs
- PopOutPanel.cs
- DefaultMemberAttribute.cs
- SettingsPropertyNotFoundException.cs
- ColumnWidthChangedEvent.cs
- TableDetailsCollection.cs
- DecoratedNameAttribute.cs
- SmtpReplyReaderFactory.cs
- CodeAttributeDeclaration.cs
- RadioButtonBaseAdapter.cs
- ReflectEventDescriptor.cs
- EnumValAlphaComparer.cs
- SmtpDateTime.cs
- CustomGrammar.cs
- WindowsGraphicsCacheManager.cs
- GenericEnumConverter.cs
- Schedule.cs
- Geometry3D.cs
- XmlDocumentFragment.cs
- XmlNamespaceMapping.cs
- SqlTriggerContext.cs
- SqlInternalConnection.cs
- GridErrorDlg.cs
- FloaterBaseParaClient.cs
- StopStoryboard.cs
- ReadWriteSpinLock.cs
- WebControlAdapter.cs
- ParameterBuilder.cs
- TrackBar.cs
- BaseParaClient.cs
- SchemaManager.cs
- XPathNodePointer.cs
- Crc32Helper.cs
- ConstraintCollection.cs
- Point3DCollectionValueSerializer.cs
- CharStorage.cs
- XmlHelper.cs
- JournalEntryListConverter.cs
- MeasureItemEvent.cs
- BufferModeSettings.cs
- CurrencyManager.cs
- TypeLoadException.cs
- X509ChainPolicy.cs
- KeyValuePairs.cs
- CharUnicodeInfo.cs
- ObjectCacheHost.cs
- DPTypeDescriptorContext.cs
- Metafile.cs
- QilTernary.cs
- QueryOptionExpression.cs
- LinkDesigner.cs
- WebConfigurationFileMap.cs
- UpdateRecord.cs
- SqlDataSourceConfigureSelectPanel.cs
- ColumnWidthChangedEvent.cs
- Enumerable.cs
- Point3DAnimationBase.cs
- AtomServiceDocumentSerializer.cs
- LockedActivityGlyph.cs
- ButtonRenderer.cs
- ModelUIElement3D.cs
- ListViewItem.cs
- UrlMappingCollection.cs
- OleDbParameter.cs
- UnionCodeGroup.cs
- BaseParagraph.cs
- NGCUIElementCollectionSerializerAsync.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- CodeExpressionStatement.cs
- FixUpCollection.cs
- AttributeProviderAttribute.cs
- XamlBrushSerializer.cs
- CharKeyFrameCollection.cs
- DocumentAutomationPeer.cs
- SectionInformation.cs
- HashHelper.cs