Code:
/ 4.0 / 4.0 / 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.] ///// // //----------------------------------------------------------------------------- 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
- storagemappingitemcollection.viewdictionary.cs
- DataTableCollection.cs
- ToolTip.cs
- OleDbMetaDataFactory.cs
- HybridObjectCache.cs
- DbParameterCollectionHelper.cs
- ConnectionProviderAttribute.cs
- cache.cs
- FixedTextSelectionProcessor.cs
- WebPart.cs
- TargetControlTypeCache.cs
- CompModSwitches.cs
- DependencyProperty.cs
- OdbcInfoMessageEvent.cs
- DSASignatureFormatter.cs
- SqlConnectionPoolProviderInfo.cs
- X509WindowsSecurityToken.cs
- DataColumnCollection.cs
- CompensatableTransactionScopeActivity.cs
- WindowsTitleBar.cs
- MemoryFailPoint.cs
- ListViewDataItem.cs
- SqlGenericUtil.cs
- IntPtr.cs
- MenuAutomationPeer.cs
- SendAgentStatusRequest.cs
- ListDictionary.cs
- RouteItem.cs
- ObjectToIdCache.cs
- HttpWebResponse.cs
- WindowsStartMenu.cs
- ImageListUtils.cs
- DataGridViewRowsAddedEventArgs.cs
- ContextMarshalException.cs
- FixedSOMLineRanges.cs
- FilterableAttribute.cs
- GenericEnumConverter.cs
- BaseDataBoundControl.cs
- NavigateUrlConverter.cs
- SizeAnimationBase.cs
- DebugView.cs
- FlowDocumentPage.cs
- SQLRoleProvider.cs
- HttpChannelListener.cs
- precedingsibling.cs
- QilTernary.cs
- ErrorFormatterPage.cs
- DataBoundControlActionList.cs
- GridErrorDlg.cs
- Config.cs
- LoginAutoFormat.cs
- TypeInfo.cs
- SettingsPropertyValue.cs
- PopupControlService.cs
- PictureBoxDesigner.cs
- VisualProxy.cs
- TextSearch.cs
- LoadGrammarCompletedEventArgs.cs
- WindowsClaimSet.cs
- FeatureManager.cs
- SecurityDescriptor.cs
- LayoutEditorPart.cs
- UICuesEvent.cs
- AppSettingsReader.cs
- GridViewRowCollection.cs
- AnimatedTypeHelpers.cs
- EventsTab.cs
- PngBitmapDecoder.cs
- ResourceManager.cs
- XmlReader.cs
- WebPartZoneCollection.cs
- WindowsGraphicsCacheManager.cs
- ProviderConnectionPointCollection.cs
- BinaryWriter.cs
- DocumentEventArgs.cs
- File.cs
- CodeVariableReferenceExpression.cs
- String.cs
- TagNameToTypeMapper.cs
- StringUtil.cs
- Track.cs
- MethodCallConverter.cs
- VideoDrawing.cs
- TextServicesCompartmentContext.cs
- ComponentResourceKeyConverter.cs
- Oci.cs
- PathSegment.cs
- EventLog.cs
- DataTableClearEvent.cs
- SessionIDManager.cs
- DaylightTime.cs
- DataControlFieldCell.cs
- PropertyInformation.cs
- ResourceDescriptionAttribute.cs
- BitmapEffectInput.cs
- SetState.cs
- Merger.cs
- IDReferencePropertyAttribute.cs
- XmlNullResolver.cs
- ResetableIterator.cs