Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeMember.cs / 1 / CodeTypeMember.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.Serialization; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeTypeMember : CodeObject { private MemberAttributes attributes = MemberAttributes.Private | MemberAttributes.Final; private string name; private CodeCommentStatementCollection comments = new CodeCommentStatementCollection(); private CodeAttributeDeclarationCollection customAttributes = null; private CodeLinePragma linePragma; // Optionally Serializable [OptionalField] private CodeDirectiveCollection startDirectives = null; [OptionalField] private CodeDirectiveCollection endDirectives = null; ////// Represents a class member. /// ////// public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } ////// Gets or sets /// the name of the member. /// ////// public MemberAttributes Attributes { get { return attributes; } set { attributes = value; } } ////// Gets or sets a ///indicating /// the attributes of the member. /// /// public CodeAttributeDeclarationCollection CustomAttributes { get { if (customAttributes == null) { customAttributes = new CodeAttributeDeclarationCollection(); } return customAttributes; } set { customAttributes = value; } } ////// Gets or sets a ///indicating /// the custom attributes of the /// member. /// /// public CodeLinePragma LinePragma { get { return linePragma; } set { linePragma = value; } } ////// The line the statement occurs on. /// ////// public CodeCommentStatementCollection Comments { get { return comments; } } public CodeDirectiveCollection StartDirectives { get { if (startDirectives == null) { startDirectives = new CodeDirectiveCollection(); } return startDirectives; } } public CodeDirectiveCollection EndDirectives { get { if (endDirectives == null) { endDirectives = new CodeDirectiveCollection(); } return endDirectives ; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the member comment collection members. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.Serialization; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeTypeMember : CodeObject { private MemberAttributes attributes = MemberAttributes.Private | MemberAttributes.Final; private string name; private CodeCommentStatementCollection comments = new CodeCommentStatementCollection(); private CodeAttributeDeclarationCollection customAttributes = null; private CodeLinePragma linePragma; // Optionally Serializable [OptionalField] private CodeDirectiveCollection startDirectives = null; [OptionalField] private CodeDirectiveCollection endDirectives = null; ////// Represents a class member. /// ////// public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } ////// Gets or sets /// the name of the member. /// ////// public MemberAttributes Attributes { get { return attributes; } set { attributes = value; } } ////// Gets or sets a ///indicating /// the attributes of the member. /// /// public CodeAttributeDeclarationCollection CustomAttributes { get { if (customAttributes == null) { customAttributes = new CodeAttributeDeclarationCollection(); } return customAttributes; } set { customAttributes = value; } } ////// Gets or sets a ///indicating /// the custom attributes of the /// member. /// /// public CodeLinePragma LinePragma { get { return linePragma; } set { linePragma = value; } } ////// The line the statement occurs on. /// ////// public CodeCommentStatementCollection Comments { get { return comments; } } public CodeDirectiveCollection StartDirectives { get { if (startDirectives == null) { startDirectives = new CodeDirectiveCollection(); } return startDirectives; } } public CodeDirectiveCollection EndDirectives { get { if (endDirectives == null) { endDirectives = new CodeDirectiveCollection(); } return endDirectives ; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the member comment collection members. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ComContractElementCollection.cs
- EntityKey.cs
- ContextQuery.cs
- SeparatorAutomationPeer.cs
- Binding.cs
- ZipIOBlockManager.cs
- MonikerUtility.cs
- ReflectionHelper.cs
- NameValueConfigurationElement.cs
- Parameter.cs
- Part.cs
- InvalidEnumArgumentException.cs
- ApplicationActivator.cs
- IISUnsafeMethods.cs
- GeometryModel3D.cs
- IOException.cs
- StringSource.cs
- LayoutSettings.cs
- TreeNode.cs
- DictionaryBase.cs
- TextFormatterHost.cs
- CodeIterationStatement.cs
- DataControlCommands.cs
- NotFiniteNumberException.cs
- DocumentSchemaValidator.cs
- DataGridItem.cs
- SoapReflectionImporter.cs
- MultiTargetingUtil.cs
- SocketPermission.cs
- TextProperties.cs
- InputBinding.cs
- SimpleWorkerRequest.cs
- HGlobalSafeHandle.cs
- ThumbButtonInfoCollection.cs
- NumericPagerField.cs
- UnsafeNativeMethods.cs
- SpeechSynthesizer.cs
- DBSchemaTable.cs
- UniqueEventHelper.cs
- IDReferencePropertyAttribute.cs
- ToolStripContentPanel.cs
- AppDomainCompilerProxy.cs
- ToolStripControlHost.cs
- FrameDimension.cs
- XmlParserContext.cs
- TableRowsCollectionEditor.cs
- ThreadStartException.cs
- TemplateAction.cs
- UnsafePeerToPeerMethods.cs
- ImageListDesigner.cs
- IndentedWriter.cs
- FormsIdentity.cs
- MemberHolder.cs
- X509InitiatorCertificateClientElement.cs
- Variant.cs
- QualificationDataItem.cs
- Typeface.cs
- SchemaHelper.cs
- Decoder.cs
- HandleValueEditor.cs
- NamespaceInfo.cs
- GCHandleCookieTable.cs
- EventListener.cs
- DateTimeUtil.cs
- LineInfo.cs
- TransformationRules.cs
- ProviderSettings.cs
- RoutedEventHandlerInfo.cs
- SecurityTokenResolver.cs
- InteropAutomationProvider.cs
- SafeSerializationManager.cs
- MyContact.cs
- CancellationTokenRegistration.cs
- Main.cs
- DataTableNameHandler.cs
- XmlCountingReader.cs
- IncrementalHitTester.cs
- CannotUnloadAppDomainException.cs
- PaperSize.cs
- PointF.cs
- GeometryGroup.cs
- CallbackValidator.cs
- VisualBasicValue.cs
- PtsHelper.cs
- BaseDataListActionList.cs
- QilBinary.cs
- TransactionScope.cs
- XmlSerializationReader.cs
- DragEvent.cs
- AstNode.cs
- MaskedTextProvider.cs
- Schema.cs
- ServicesSection.cs
- BCryptSafeHandles.cs
- TabItemAutomationPeer.cs
- ReflectionServiceProvider.cs
- SelectedDatesCollection.cs
- XmlUrlResolver.cs
- _TLSstream.cs
- COM2ExtendedTypeConverter.cs