Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Runtime / CompilerServices / CompilationRelaxations.cs / 1 / CompilationRelaxations.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
namespace System.Runtime.CompilerServices
{
using System;
/// IMPORTANT: Keep this in sync with corhdr.h
[Serializable, Flags]
[System.Runtime.InteropServices.ComVisible(true)]
public enum CompilationRelaxations : int
{
NoStringInterning = 0x0008, // Start in 0x0008, we had other non public flags in this enum before,
// so we'll start here just in case somebody used them. This flag is only
// valid when set for Assemblies.
};
[Serializable, AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Method)]
[System.Runtime.InteropServices.ComVisible(true)]
public class CompilationRelaxationsAttribute : Attribute
{
private int m_relaxations; // The relaxations.
public CompilationRelaxationsAttribute (
int relaxations)
{
m_relaxations = relaxations;
}
public CompilationRelaxationsAttribute (
CompilationRelaxations relaxations)
{
m_relaxations = (int) relaxations;
}
public int CompilationRelaxations
{
get
{
return m_relaxations;
}
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SizeAnimationClockResource.cs
- TextElement.cs
- AutomationPatternInfo.cs
- _Rfc2616CacheValidators.cs
- XsltLibrary.cs
- AppSecurityManager.cs
- FontInfo.cs
- HttpStaticObjectsCollectionBase.cs
- ViewPort3D.cs
- SubclassTypeValidator.cs
- ConstructorExpr.cs
- MonitoringDescriptionAttribute.cs
- EventHandlingScope.cs
- XsltInput.cs
- TreeView.cs
- FrameworkElementFactory.cs
- ControlBindingsCollection.cs
- RequestFactory.cs
- FrameworkRichTextComposition.cs
- HotCommands.cs
- DataGridViewRowCollection.cs
- WrappedIUnknown.cs
- CachedBitmap.cs
- InstanceKeyView.cs
- AuthorizationRule.cs
- objectresult_tresulttype.cs
- HasRunnableWorkflowEvent.cs
- DataGridTextBox.cs
- SkinBuilder.cs
- CategoryEditor.cs
- RelationshipDetailsCollection.cs
- Helper.cs
- Operand.cs
- XmlWriter.cs
- ViewBox.cs
- SQLDouble.cs
- TabItemWrapperAutomationPeer.cs
- LongAverageAggregationOperator.cs
- ScriptComponentDescriptor.cs
- WindowsAltTab.cs
- XXXOnTypeBuilderInstantiation.cs
- ScrollChrome.cs
- OrderPreservingSpoolingTask.cs
- TextDocumentView.cs
- ExtractorMetadata.cs
- SQLInt64Storage.cs
- DynamicMethod.cs
- smtpconnection.cs
- BatchParser.cs
- SelectionWordBreaker.cs
- ConnectionStringsSection.cs
- ScaleTransform.cs
- DataControlReferenceCollection.cs
- SponsorHelper.cs
- IdentityHolder.cs
- Metadata.cs
- CharacterShapingProperties.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- RequestUriProcessor.cs
- ToolStrip.cs
- WindowsSlider.cs
- XamlInt32CollectionSerializer.cs
- TableLayoutStyle.cs
- ExpandedWrapper.cs
- TemplateField.cs
- BufferedGraphics.cs
- Compiler.cs
- Ipv6Element.cs
- SystemInformation.cs
- WebPartVerb.cs
- PriorityBinding.cs
- HtmlInputRadioButton.cs
- CounterSampleCalculator.cs
- AssemblyBuilder.cs
- ItemsControlAutomationPeer.cs
- CLRBindingWorker.cs
- DataRowIndexBuffer.cs
- MarginCollapsingState.cs
- InheritanceContextHelper.cs
- UIElement3DAutomationPeer.cs
- FlowNode.cs
- ExpressionBindingsDialog.cs
- XsdDateTime.cs
- SqlComparer.cs
- EditorPart.cs
- ErrorInfoXmlDocument.cs
- FunctionImportElement.cs
- SafeSecurityHandles.cs
- XamlFigureLengthSerializer.cs
- DuplicateDetector.cs
- StackOverflowException.cs
- HttpBrowserCapabilitiesBase.cs
- AssemblyUtil.cs
- Point.cs
- CharAnimationUsingKeyFrames.cs
- Object.cs
- DataListItem.cs
- ValidationSummary.cs
- XmlNodeComparer.cs
- Vector3DCollectionValueSerializer.cs