Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// 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; } } } } // 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
- WindowsToolbarAsMenu.cs
- LineMetrics.cs
- FlowDocumentView.cs
- dataobject.cs
- AttributeQuery.cs
- oledbconnectionstring.cs
- HostExecutionContextManager.cs
- contentDescriptor.cs
- OperationInvokerBehavior.cs
- FutureFactory.cs
- TextRangeAdaptor.cs
- LocalizableResourceBuilder.cs
- Matrix3DStack.cs
- Columns.cs
- CheckBoxAutomationPeer.cs
- NativeMethods.cs
- InstallerTypeAttribute.cs
- StaticSiteMapProvider.cs
- Evidence.cs
- VisualStyleTypesAndProperties.cs
- XmlTypeAttribute.cs
- _AcceptOverlappedAsyncResult.cs
- SqlUserDefinedAggregateAttribute.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- OleDbFactory.cs
- GlyphsSerializer.cs
- OleDbConnection.cs
- SpnEndpointIdentity.cs
- ScalarConstant.cs
- DataSourceView.cs
- RC2.cs
- JsonGlobals.cs
- HttpSessionStateWrapper.cs
- SspiNegotiationTokenAuthenticator.cs
- SqlStatistics.cs
- LineBreak.cs
- NavigatingCancelEventArgs.cs
- _BufferOffsetSize.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- CatalogZoneDesigner.cs
- TreeChangeInfo.cs
- SQLSingleStorage.cs
- HyperLinkDataBindingHandler.cs
- Message.cs
- NotifyIcon.cs
- DesignerObjectListAdapter.cs
- OpenFileDialog.cs
- PasswordDeriveBytes.cs
- NonClientArea.cs
- TextSpanModifier.cs
- UInt64Converter.cs
- Renderer.cs
- PermissionListSet.cs
- UniqueID.cs
- CharacterMetrics.cs
- Opcode.cs
- EFColumnProvider.cs
- WmfPlaceableFileHeader.cs
- DataGridViewBindingCompleteEventArgs.cs
- StorageEntityContainerMapping.cs
- TableHeaderCell.cs
- PropertyIdentifier.cs
- Visitor.cs
- TextAdaptor.cs
- DecoderFallback.cs
- FileVersionInfo.cs
- ReadOnlyState.cs
- ImageClickEventArgs.cs
- MenuRendererStandards.cs
- QEncodedStream.cs
- TextBoxAutoCompleteSourceConverter.cs
- XmlSchemaDocumentation.cs
- TypeConverterValueSerializer.cs
- Control.cs
- DataGridViewLinkCell.cs
- WeakReference.cs
- ObjectStateManager.cs
- PackageRelationshipSelector.cs
- SystemIPGlobalProperties.cs
- panel.cs
- GridViewRow.cs
- TerminatingOperationBehavior.cs
- UpdateException.cs
- ImageSource.cs
- Assembly.cs
- BookmarkUndoUnit.cs
- CharAnimationUsingKeyFrames.cs
- ProjectionQueryOptionExpression.cs
- XmlText.cs
- Queue.cs
- AppDomainManager.cs
- FixedTextView.cs
- UxThemeWrapper.cs
- GridViewRowEventArgs.cs
- GridViewColumn.cs
- Exceptions.cs
- TextContainerChangedEventArgs.cs
- GZipStream.cs
- DbDataAdapter.cs
- DataControlLinkButton.cs