Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeMember.cs / 1305376 / CodeTypeMember.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- 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; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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
- ImageResources.Designer.cs
- Char.cs
- ViewUtilities.cs
- UnionCodeGroup.cs
- ConfigurationSectionCollection.cs
- Axis.cs
- DateTime.cs
- XmlElementList.cs
- CompModSwitches.cs
- TreeViewAutomationPeer.cs
- TypedElement.cs
- PerformanceCounterPermissionEntry.cs
- Point3DAnimation.cs
- SelectedDatesCollection.cs
- SolidColorBrush.cs
- ListBindableAttribute.cs
- ReflectionTypeLoadException.cs
- Command.cs
- NotSupportedException.cs
- DocumentSignatureManager.cs
- formatter.cs
- HttpWebRequest.cs
- BindingMemberInfo.cs
- CacheChildrenQuery.cs
- CharAnimationUsingKeyFrames.cs
- SupportsEventValidationAttribute.cs
- DesignerHelpers.cs
- DataSourceControl.cs
- TableAdapterManagerMethodGenerator.cs
- WebPartEditVerb.cs
- EndOfStreamException.cs
- SafeTimerHandle.cs
- ServiceModelDictionary.cs
- MailAddressParser.cs
- ResourceAttributes.cs
- ResourceCodeDomSerializer.cs
- PeerContact.cs
- ProfessionalColorTable.cs
- BufferBuilder.cs
- EntityFrameworkVersions.cs
- WebSysDefaultValueAttribute.cs
- SqlProviderServices.cs
- XmlQuerySequence.cs
- AdornerDecorator.cs
- ServiceMemoryGates.cs
- MenuAutoFormat.cs
- DataGridViewColumnCollectionDialog.cs
- SqlDataReaderSmi.cs
- Set.cs
- ComNativeDescriptor.cs
- OdbcPermission.cs
- SoapInteropTypes.cs
- Identifier.cs
- FormsIdentity.cs
- HwndMouseInputProvider.cs
- CellCreator.cs
- _ChunkParse.cs
- DocumentPageViewAutomationPeer.cs
- BufferBuilder.cs
- PageAsyncTask.cs
- coordinatorfactory.cs
- HttpChannelListener.cs
- RegexParser.cs
- SQLBoolean.cs
- CompoundFileStreamReference.cs
- SemanticValue.cs
- MethodBuilderInstantiation.cs
- TrackingStringDictionary.cs
- RelatedImageListAttribute.cs
- RetrieveVirtualItemEventArgs.cs
- HashAlgorithm.cs
- EntityDesignerDataSourceView.cs
- CachedBitmap.cs
- DbMetaDataCollectionNames.cs
- GeometryHitTestResult.cs
- WebPartChrome.cs
- _FixedSizeReader.cs
- AutomationElementCollection.cs
- RewritingSimplifier.cs
- FileDialogPermission.cs
- DbConnectionClosed.cs
- DbCommandTree.cs
- SpotLight.cs
- Style.cs
- CodeGenerationManager.cs
- TableColumnCollectionInternal.cs
- SafeProcessHandle.cs
- FontResourceCache.cs
- DbDataReader.cs
- DllNotFoundException.cs
- NavigationHelper.cs
- StandardCommands.cs
- XmlDictionaryReader.cs
- SafeEventLogWriteHandle.cs
- OdbcStatementHandle.cs
- RegexWorker.cs
- InternalPermissions.cs
- XmlComplianceUtil.cs
- XmlUtil.cs
- MDIClient.cs