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
- CompositeDataBoundControl.cs
- DropDownList.cs
- DesignRelation.cs
- ScrollableControl.cs
- DataServiceRequestOfT.cs
- X509SecurityToken.cs
- ToolStripTextBox.cs
- ExceptionUtil.cs
- DynamicUpdateCommand.cs
- DataGridColumnHeader.cs
- LOSFormatter.cs
- PingOptions.cs
- ChannelManager.cs
- WorkflowItemsPresenter.cs
- WpfPayload.cs
- MailSettingsSection.cs
- PeerValidationBehavior.cs
- TabRenderer.cs
- AutoResizedEvent.cs
- TypeNameConverter.cs
- ErrorsHelper.cs
- StringResourceManager.cs
- DesignOnlyAttribute.cs
- SiteMapSection.cs
- ColorInterpolationModeValidation.cs
- CommandSet.cs
- MethodMessage.cs
- DragEvent.cs
- SessionPageStateSection.cs
- BrowserDefinition.cs
- MachineKeySection.cs
- EntryPointNotFoundException.cs
- UnionExpr.cs
- ServiceEndpoint.cs
- UIntPtr.cs
- LinkArea.cs
- SafeNativeMethods.cs
- CharacterMetricsDictionary.cs
- PortCache.cs
- ConfigurationStrings.cs
- AuthenticationSection.cs
- FormsAuthenticationTicket.cs
- FixedSOMFixedBlock.cs
- UserNameSecurityTokenProvider.cs
- ToggleButton.cs
- XNodeValidator.cs
- StorageRoot.cs
- DeferredReference.cs
- DebugController.cs
- ParallelDesigner.xaml.cs
- Message.cs
- DataGridTableStyleMappingNameEditor.cs
- XamlReader.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- CommandLineParser.cs
- Terminate.cs
- IsolatedStoragePermission.cs
- GridViewHeaderRowPresenter.cs
- SimpleWorkerRequest.cs
- OdbcCommand.cs
- FunctionNode.cs
- TimelineGroup.cs
- AlternateViewCollection.cs
- DataColumnMappingCollection.cs
- MulticastDelegate.cs
- DataObjectCopyingEventArgs.cs
- Manipulation.cs
- CreateUserWizard.cs
- EntityUtil.cs
- WebDisplayNameAttribute.cs
- ScriptingSectionGroup.cs
- XamlFilter.cs
- Geometry.cs
- DataTrigger.cs
- RelationshipEndMember.cs
- LayoutTableCell.cs
- RightsManagementInformation.cs
- SystemEvents.cs
- FixedTextPointer.cs
- TextEditorDragDrop.cs
- SystemEvents.cs
- SubclassTypeValidatorAttribute.cs
- ParameterModifier.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- Lazy.cs
- TextEditorSelection.cs
- NativeMethodsOther.cs
- ScrollItemProviderWrapper.cs
- PassportAuthenticationModule.cs
- WebProxyScriptElement.cs
- CacheRequest.cs
- KeyGesture.cs
- ToReply.cs
- embossbitmapeffect.cs
- DataRelationCollection.cs
- HashSetDebugView.cs
- DbBuffer.cs
- ParallelTimeline.cs
- WindowsIdentity.cs
- Int64Animation.cs