Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / Compiler / CodeGeneratorOptions.cs / 1305376 / CodeGeneratorOptions.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom.Compiler { using System; using System.CodeDom; using System.Collections; using System.Collections.Specialized; using System.Security.Permissions; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [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; } } } } // 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
- SafeCryptContextHandle.cs
- LoginCancelEventArgs.cs
- InputMethod.cs
- GroupStyle.cs
- LocatorBase.cs
- QilPatternVisitor.cs
- VisualBrush.cs
- OdbcPermission.cs
- UserPreferenceChangingEventArgs.cs
- ComponentChangingEvent.cs
- DictionaryChange.cs
- ApplicationServiceManager.cs
- Context.cs
- GenericRootAutomationPeer.cs
- ArithmeticException.cs
- DataSourceUtil.cs
- DataReceivedEventArgs.cs
- RequiredAttributeAttribute.cs
- RegexCharClass.cs
- SelectionRange.cs
- CompilerScope.cs
- FileRecordSequenceHelper.cs
- Misc.cs
- MessageQueueKey.cs
- BasePropertyDescriptor.cs
- PolicyStatement.cs
- LocalizedNameDescriptionPair.cs
- FixedPageAutomationPeer.cs
- SizeAnimationBase.cs
- MobileUITypeEditor.cs
- Matrix.cs
- CodeAccessSecurityEngine.cs
- Stream.cs
- ListViewInsertEventArgs.cs
- InkCanvas.cs
- ChooseAction.cs
- ConfigurationValidatorBase.cs
- MD5.cs
- UndirectedGraph.cs
- BroadcastEventHelper.cs
- PrintingPermission.cs
- DiscoveryDocumentReference.cs
- CategoryGridEntry.cs
- PolyLineSegment.cs
- NamespaceMapping.cs
- CodeDelegateCreateExpression.cs
- MailBnfHelper.cs
- XPathDocumentBuilder.cs
- ByteKeyFrameCollection.cs
- SmiConnection.cs
- SecurityException.cs
- NGCPageContentSerializerAsync.cs
- AdjustableArrowCap.cs
- Msec.cs
- FtpWebRequest.cs
- XPathDocumentNavigator.cs
- EmptyEnumerator.cs
- ConfigurationSettings.cs
- BinaryMethodMessage.cs
- QualifiedCellIdBoolean.cs
- PropertyManager.cs
- EventProxy.cs
- EntityCommand.cs
- HttpBrowserCapabilitiesBase.cs
- FixedElement.cs
- TreeView.cs
- Permission.cs
- TextRangeAdaptor.cs
- GridViewCancelEditEventArgs.cs
- NameScopePropertyAttribute.cs
- MediaElementAutomationPeer.cs
- MsmqIntegrationSecurityMode.cs
- Stopwatch.cs
- DataGridViewRowPrePaintEventArgs.cs
- SecurityStateEncoder.cs
- Timer.cs
- ReachFixedDocumentSerializer.cs
- TypeReference.cs
- SqlInfoMessageEvent.cs
- DocumentPage.cs
- XmlSchemaAttributeGroup.cs
- RepeatButtonAutomationPeer.cs
- XamlSerializerUtil.cs
- TypeDescriptor.cs
- ClientConfigurationHost.cs
- ReadOnlyDictionary.cs
- RepeatInfo.cs
- WrapPanel.cs
- SystemIPInterfaceStatistics.cs
- NonVisualControlAttribute.cs
- DataRelationPropertyDescriptor.cs
- GlyphingCache.cs
- Parameter.cs
- PathSegment.cs
- StrongNameIdentityPermission.cs
- MatrixAnimationUsingKeyFrames.cs
- Message.cs
- SQLInt32Storage.cs
- ResourceLoader.cs
- Content.cs