Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / Compiler / CodeGeneratorOptions.cs / 1 / CodeGeneratorOptions.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom.Compiler { using System; using System.CodeDom; using System.Collections; using System.Collections.Specialized; using System.Security.Permissions; ////// [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] public class CodeGeneratorOptions { private IDictionary options = new ListDictionary(); ////// Represents options used in code generation /// ////// public CodeGeneratorOptions() { } ///[To be supplied.] ////// public object this[string index] { get { return options[index]; } set { options[index] = value; } } ///[To be supplied.] ////// public string IndentString { get { object o = options["IndentString"]; return ((o == null) ? " " : (string)o); } set { options["IndentString"] = value; } } ///[To be supplied.] ////// public string BracingStyle { get { object o = options["BracingStyle"]; return ((o == null) ? "Block" : (string)o); } set { options["BracingStyle"] = value; } } ///[To be supplied.] ////// public bool ElseOnClosing { get { object o = options["ElseOnClosing"]; return ((o == null) ? false : (bool)o); } set { options["ElseOnClosing"] = value; } } ///[To be supplied.] ////// public bool BlankLinesBetweenMembers { get { object o = options["BlankLinesBetweenMembers"]; return ((o == null) ? true : (bool)o); } set { options["BlankLinesBetweenMembers"] = value; } } [System.Runtime.InteropServices.ComVisible(false)] public bool VerbatimOrder { get { object o = options["VerbatimOrder"]; return ((o == null) ? false : (bool)o); } set { options["VerbatimOrder"] = value; } } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FullTextBreakpoint.cs
- StreamMarshaler.cs
- XPathConvert.cs
- ColorTransform.cs
- WebBrowserDocumentCompletedEventHandler.cs
- TabControlAutomationPeer.cs
- WbmpConverter.cs
- XmlSerializerAssemblyAttribute.cs
- OracleDataReader.cs
- OdbcInfoMessageEvent.cs
- FileClassifier.cs
- QuaternionIndependentAnimationStorage.cs
- FontCacheUtil.cs
- ContainsSearchOperator.cs
- MessageSmuggler.cs
- Clipboard.cs
- OutOfProcStateClientManager.cs
- ContractMapping.cs
- CachedPathData.cs
- ServiceBusyException.cs
- XmlNodeComparer.cs
- ComponentManagerBroker.cs
- WindowsPrincipal.cs
- AssemblyNameEqualityComparer.cs
- Margins.cs
- EncoderParameter.cs
- RoleManagerEventArgs.cs
- PropertyDescriptorGridEntry.cs
- WindowPatternIdentifiers.cs
- UnsafeNativeMethods.cs
- WasAdminWrapper.cs
- AccessText.cs
- EntitySet.cs
- Set.cs
- ToolStripOverflow.cs
- PropertyGeneratedEventArgs.cs
- GridViewColumnCollection.cs
- ListBox.cs
- ResolvedKeyFrameEntry.cs
- PropertyItem.cs
- TreeNode.cs
- HttpCachePolicyElement.cs
- HttpModuleActionCollection.cs
- ListViewInsertEventArgs.cs
- IISUnsafeMethods.cs
- ObjectContextServiceProvider.cs
- XPathNavigatorKeyComparer.cs
- ListItem.cs
- XpsManager.cs
- DbLambda.cs
- SafeSecurityHandles.cs
- SystemGatewayIPAddressInformation.cs
- CqlQuery.cs
- DelayedRegex.cs
- Control.cs
- SourceElementsCollection.cs
- ResXBuildProvider.cs
- WinFormsSpinner.cs
- DataKey.cs
- StaticFileHandler.cs
- SchemaNamespaceManager.cs
- WindowsListViewGroup.cs
- JoinGraph.cs
- NativeCppClassAttribute.cs
- EqualityComparer.cs
- PagesChangedEventArgs.cs
- RecognitionEventArgs.cs
- AppSettingsReader.cs
- EntityCollection.cs
- BookmarkResumptionRecord.cs
- Int32Storage.cs
- ApplicationServicesHostFactory.cs
- ScrollEvent.cs
- ClientConfigurationSystem.cs
- RoutedCommand.cs
- ComponentChangedEvent.cs
- ReflectionUtil.cs
- WebProxyScriptElement.cs
- _ConnectStream.cs
- MessageEnumerator.cs
- RepeaterItemCollection.cs
- ComponentResourceKey.cs
- RuleSet.cs
- RoutedUICommand.cs
- Clock.cs
- InstalledFontCollection.cs
- RelOps.cs
- RoleManagerEventArgs.cs
- PreProcessInputEventArgs.cs
- Size.cs
- BrowserTree.cs
- ConfigurationElementProperty.cs
- PathStreamGeometryContext.cs
- LingerOption.cs
- ResourceProviderFactory.cs
- ProxyWebPart.cs
- EventDrivenDesigner.cs
- ThreadInterruptedException.cs
- JsonSerializer.cs
- RbTree.cs