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
- FactoryId.cs
- AutoGeneratedField.cs
- XmlBinaryReader.cs
- EnumerableRowCollection.cs
- UIElementIsland.cs
- WindowsTokenRoleProvider.cs
- LinkedResource.cs
- VBIdentifierNameEditor.cs
- DataControlLinkButton.cs
- SrgsGrammarCompiler.cs
- DeflateStreamAsyncResult.cs
- SpotLight.cs
- IOException.cs
- StorageMappingFragment.cs
- VerticalAlignConverter.cs
- UnsafePeerToPeerMethods.cs
- SamlAttribute.cs
- XmlQueryType.cs
- DataConnectionHelper.cs
- ApplicationTrust.cs
- ObjectToIdCache.cs
- ResourceDescriptionAttribute.cs
- BasicKeyConstraint.cs
- ClientUIRequest.cs
- EncryptedData.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- DataKeyArray.cs
- MultiView.cs
- GridViewCommandEventArgs.cs
- altserialization.cs
- Memoizer.cs
- DBBindings.cs
- HyperLinkColumn.cs
- CellTreeNodeVisitors.cs
- BoundColumn.cs
- ZipIOExtraFieldZip64Element.cs
- DaylightTime.cs
- ParamArrayAttribute.cs
- MembershipPasswordException.cs
- AudioFileOut.cs
- TreeChangeInfo.cs
- OleDbPropertySetGuid.cs
- ReferencedType.cs
- UntrustedRecipientException.cs
- activationcontext.cs
- ServiceNameElement.cs
- TemplateInstanceAttribute.cs
- InvokePatternIdentifiers.cs
- lengthconverter.cs
- PeerContact.cs
- InvalidDataContractException.cs
- FixedFindEngine.cs
- ActivityStateRecord.cs
- DetailsViewDeletedEventArgs.cs
- IndentedWriter.cs
- TypedElement.cs
- StrokeNodeData.cs
- ImageKeyConverter.cs
- PageThemeBuildProvider.cs
- CannotUnloadAppDomainException.cs
- DataSourceXmlClassAttribute.cs
- BindingCompleteEventArgs.cs
- ProxyManager.cs
- TransformCollection.cs
- altserialization.cs
- ProtocolState.cs
- ClientSettings.cs
- SystemTcpConnection.cs
- XmlAnyElementAttributes.cs
- BitmapDownload.cs
- StreamWithDictionary.cs
- SqlNode.cs
- ControlBuilder.cs
- InternalConfigSettingsFactory.cs
- MsmqTransportReceiveParameters.cs
- TransformPatternIdentifiers.cs
- DefaultAsyncDataDispatcher.cs
- OdbcInfoMessageEvent.cs
- ForEachAction.cs
- XmlSchemaCompilationSettings.cs
- AvTraceFormat.cs
- UserControl.cs
- ToolStripDropDownMenu.cs
- SocketAddress.cs
- File.cs
- COAUTHIDENTITY.cs
- EntityKeyElement.cs
- TogglePattern.cs
- DataPointer.cs
- BindingListCollectionView.cs
- ListControl.cs
- AutomationFocusChangedEventArgs.cs
- cache.cs
- NamespaceInfo.cs
- AspCompat.cs
- OracleCommand.cs
- InternalEnumValidatorAttribute.cs
- _OSSOCK.cs
- WindowsEditBoxRange.cs
- GlyphingCache.cs