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
- WebServiceBindingAttribute.cs
- PriorityBinding.cs
- DoubleAnimationClockResource.cs
- _NativeSSPI.cs
- FtpCachePolicyElement.cs
- ObjectDesignerDataSourceView.cs
- HtmlInputText.cs
- SerializableReadOnlyDictionary.cs
- DataGridViewCellConverter.cs
- FontStretches.cs
- TextCollapsingProperties.cs
- ChooseAction.cs
- DataServiceRequest.cs
- AllMembershipCondition.cs
- CursorConverter.cs
- IIS7UserPrincipal.cs
- TreeViewHitTestInfo.cs
- ContentTextAutomationPeer.cs
- MatcherBuilder.cs
- GroupByExpressionRewriter.cs
- CqlBlock.cs
- PrimaryKeyTypeConverter.cs
- FontStretch.cs
- SerTrace.cs
- HiddenFieldPageStatePersister.cs
- CellNormalizer.cs
- Quad.cs
- ToolboxItemAttribute.cs
- NCryptNative.cs
- RepeaterItemCollection.cs
- IpcClientChannel.cs
- VisualBrush.cs
- UnmanagedBitmapWrapper.cs
- IPHostEntry.cs
- ObsoleteAttribute.cs
- LinqDataSourceSelectEventArgs.cs
- Convert.cs
- ComboBoxRenderer.cs
- SpecialFolderEnumConverter.cs
- ToolStripProgressBar.cs
- SoapElementAttribute.cs
- PropertyMap.cs
- BuildManagerHost.cs
- CorrelationTokenTypeConvertor.cs
- NavigatorInvalidBodyAccessException.cs
- TextParaClient.cs
- OrderByExpression.cs
- DocumentOrderComparer.cs
- XmlSchemaAttribute.cs
- TableLayoutSettings.cs
- QueryResponse.cs
- Lease.cs
- TransactionScopeDesigner.cs
- StateMachineWorkflow.cs
- DESCryptoServiceProvider.cs
- DbConnectionPool.cs
- DataGridViewTextBoxCell.cs
- MemberMemberBinding.cs
- ReadContentAsBinaryHelper.cs
- AnnotationHelper.cs
- ScriptResourceInfo.cs
- FontNamesConverter.cs
- ButtonPopupAdapter.cs
- SrgsGrammarCompiler.cs
- streamingZipPartStream.cs
- X509CertificateClaimSet.cs
- AttributeUsageAttribute.cs
- DesignerGeometryHelper.cs
- WmlMobileTextWriter.cs
- HybridCollection.cs
- HtmlSelect.cs
- CodeConstructor.cs
- DefaultProxySection.cs
- Group.cs
- figurelength.cs
- FontUnitConverter.cs
- SqlDataRecord.cs
- TreeViewDesigner.cs
- DocumentViewer.cs
- DataSourceSelectArguments.cs
- NavigationEventArgs.cs
- connectionpool.cs
- LinkConverter.cs
- ProjectionPruner.cs
- InputScope.cs
- Stack.cs
- XamlRtfConverter.cs
- BaseCollection.cs
- XmlValueConverter.cs
- Overlapped.cs
- GroupedContextMenuStrip.cs
- WebPartDesigner.cs
- Image.cs
- ProxyGenerator.cs
- IsolatedStorageFile.cs
- AppDomainAttributes.cs
- MethodRental.cs
- UnauthorizedWebPart.cs
- SqlNotificationEventArgs.cs
- MessageBodyDescription.cs