Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Runtime / GcSettings.cs / 1 / GcSettings.cs
namespace System.Runtime { using System; using System.Runtime.CompilerServices; using System.Runtime.ConstrainedExecution; using System.Security.Permissions; // This is the same format as in clr\src\vm\gcpriv.h // make sure you change that one if you change this one! [Serializable] public enum GCLatencyMode { Batch = 0, Interactive = 1, LowLatency = 2 } public static class GCSettings { public static GCLatencyMode LatencyMode { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] get { return (GCLatencyMode)(GC.nativeGetGCLatencyMode()); } // We don't want to allow this API when hosted. [HostProtection(MayLeakOnAbort = true)] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] [PermissionSetAttribute(SecurityAction.LinkDemand, Name="FullTrust")] set { if ((value < GCLatencyMode.Batch) || (value > GCLatencyMode.LowLatency)) { throw new ArgumentOutOfRangeException(Environment.GetResourceString("ArgumentOutOfRange_Enum")); } GC.nativeSetGCLatencyMode((int)value); } } public static bool IsServerGC { get { return GC.nativeIsServerGC(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.Runtime { using System; using System.Runtime.CompilerServices; using System.Runtime.ConstrainedExecution; using System.Security.Permissions; // This is the same format as in clr\src\vm\gcpriv.h // make sure you change that one if you change this one! [Serializable] public enum GCLatencyMode { Batch = 0, Interactive = 1, LowLatency = 2 } public static class GCSettings { public static GCLatencyMode LatencyMode { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] get { return (GCLatencyMode)(GC.nativeGetGCLatencyMode()); } // We don't want to allow this API when hosted. [HostProtection(MayLeakOnAbort = true)] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] [PermissionSetAttribute(SecurityAction.LinkDemand, Name="FullTrust")] set { if ((value < GCLatencyMode.Batch) || (value > GCLatencyMode.LowLatency)) { throw new ArgumentOutOfRangeException(Environment.GetResourceString("ArgumentOutOfRange_Enum")); } GC.nativeSetGCLatencyMode((int)value); } } public static bool IsServerGC { get { return GC.nativeIsServerGC(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CriticalExceptions.cs
- CrossSiteScriptingValidation.cs
- ToolStripDropTargetManager.cs
- StringStorage.cs
- CustomActivityDesigner.cs
- XmlChildNodes.cs
- RegexReplacement.cs
- TreeViewImageIndexConverter.cs
- TextSimpleMarkerProperties.cs
- InvalidOleVariantTypeException.cs
- SafeUserTokenHandle.cs
- DuplexSecurityProtocolFactory.cs
- TextClipboardData.cs
- BuilderPropertyEntry.cs
- SyndicationSerializer.cs
- InputProcessorProfilesLoader.cs
- BeginSelectCardRequest.cs
- TextDecorations.cs
- ObjectItemNoOpAssemblyLoader.cs
- RemotingConfigParser.cs
- HttpConfigurationContext.cs
- DetailsViewRow.cs
- ExeConfigurationFileMap.cs
- HelpKeywordAttribute.cs
- IPipelineRuntime.cs
- xmlsaver.cs
- DmlSqlGenerator.cs
- XmlAutoDetectWriter.cs
- HtmlImage.cs
- ServerReliableChannelBinder.cs
- WinEventTracker.cs
- DataRecord.cs
- DataGridParentRows.cs
- StoragePropertyMapping.cs
- XmlNode.cs
- ComponentResourceKey.cs
- OrderToken.cs
- AndCondition.cs
- DSASignatureFormatter.cs
- PropertyItemInternal.cs
- ZipIOFileItemStream.cs
- ImageUrlEditor.cs
- InputMethod.cs
- DbInsertCommandTree.cs
- EdmValidator.cs
- QueryTaskGroupState.cs
- safesecurityhelperavalon.cs
- StorageBasedPackageProperties.cs
- AggregateNode.cs
- LambdaCompiler.Expressions.cs
- ItemsPresenter.cs
- DataChangedEventManager.cs
- DeferredElementTreeState.cs
- DataGridViewRowHeaderCell.cs
- ArcSegment.cs
- LineUtil.cs
- Evidence.cs
- XmlElementList.cs
- StandardToolWindows.cs
- MenuItemStyleCollection.cs
- ParameterModifier.cs
- httpstaticobjectscollection.cs
- Stylesheet.cs
- DependencyPropertyChangedEventArgs.cs
- PaintEvent.cs
- SecurityDescriptor.cs
- DataGridViewRowCollection.cs
- XmlDocumentSerializer.cs
- BaseParaClient.cs
- WindowInteractionStateTracker.cs
- WinFormsSpinner.cs
- FormsAuthenticationTicket.cs
- Roles.cs
- EncoderExceptionFallback.cs
- AtomicFile.cs
- WebConfigurationHost.cs
- HtmlFormWrapper.cs
- FixedSOMSemanticBox.cs
- XmlSerializerNamespaces.cs
- DbSourceCommand.cs
- ResolveDuplexAsyncResult.cs
- TextViewSelectionProcessor.cs
- DefaultTraceListener.cs
- Rect3DConverter.cs
- WorkItem.cs
- TdsParameterSetter.cs
- TypeUnloadedException.cs
- ZoneLinkButton.cs
- PartitionResolver.cs
- DockPattern.cs
- LineInfo.cs
- Rect3D.cs
- DataGrid.cs
- ResourceExpression.cs
- Thread.cs
- MSHTMLHost.cs
- DataGridViewCellEventArgs.cs
- ChangeTracker.cs
- DocumentReference.cs
- IdentityNotMappedException.cs