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
- ConnectionManagementElement.cs
- XmlAttributeProperties.cs
- WebConfigurationHost.cs
- TraceContext.cs
- documentsequencetextcontainer.cs
- MexTcpBindingCollectionElement.cs
- CodeMemberField.cs
- WSTransactionSection.cs
- SafeNativeMethods.cs
- FormsIdentity.cs
- SqlServices.cs
- MessageRpc.cs
- EventProviderWriter.cs
- SoapException.cs
- AlternateView.cs
- IndexedGlyphRun.cs
- WindowsSlider.cs
- ColorTranslator.cs
- DataGridViewImageCell.cs
- PEFileEvidenceFactory.cs
- SchemaInfo.cs
- PrincipalPermission.cs
- OperationResponse.cs
- RoleService.cs
- UidPropertyAttribute.cs
- HelpInfo.cs
- SoapClientProtocol.cs
- SqlProviderServices.cs
- WebServiceTypeData.cs
- EntityDataSourceChangingEventArgs.cs
- AssemblyFilter.cs
- IPGlobalProperties.cs
- Int64Animation.cs
- OdbcConnectionStringbuilder.cs
- LassoHelper.cs
- ExpressionDumper.cs
- PenThread.cs
- DoubleStorage.cs
- SQLMoneyStorage.cs
- FlatButtonAppearance.cs
- HatchBrush.cs
- ResolveMatchesApril2005.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- ColorComboBox.cs
- Deflater.cs
- ResourceReferenceExpressionConverter.cs
- XDeferredAxisSource.cs
- SystemKeyConverter.cs
- TrackingProfile.cs
- AnnotationService.cs
- WebBrowserUriTypeConverter.cs
- COM2PropertyBuilderUITypeEditor.cs
- InputBindingCollection.cs
- GraphicsState.cs
- DataStreamFromComStream.cs
- TextEmbeddedObject.cs
- X509SubjectKeyIdentifierClause.cs
- DocobjHost.cs
- DateRangeEvent.cs
- TriggerCollection.cs
- EventData.cs
- OletxVolatileEnlistment.cs
- Internal.cs
- DecoderFallback.cs
- BooleanAnimationBase.cs
- MultiBindingExpression.cs
- ManagementDateTime.cs
- DoubleAnimationUsingKeyFrames.cs
- CounterSample.cs
- WorkflowService.cs
- SignedXml.cs
- DocobjHost.cs
- IisTraceListener.cs
- GeneralTransform3DCollection.cs
- GridView.cs
- EnumerableRowCollectionExtensions.cs
- ComplexTypeEmitter.cs
- KeyPullup.cs
- _SslSessionsCache.cs
- PropertyNames.cs
- EnumUnknown.cs
- ProjectedWrapper.cs
- RoleService.cs
- MetadataArtifactLoader.cs
- Point4DValueSerializer.cs
- SocketElement.cs
- Int32Storage.cs
- Stroke2.cs
- HtmlUtf8RawTextWriter.cs
- TitleStyle.cs
- TraceLevelStore.cs
- GroupBoxAutomationPeer.cs
- ScrollData.cs
- ObjectViewListener.cs
- OracleInternalConnection.cs
- CodePropertyReferenceExpression.cs
- WebPartTransformerCollection.cs
- DataRow.cs
- Evaluator.cs
- DesignerTransaction.cs