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
- Point3DIndependentAnimationStorage.cs
- PointValueSerializer.cs
- InputBuffer.cs
- HttpResponse.cs
- CodeArgumentReferenceExpression.cs
- XmlSortKeyAccumulator.cs
- MergeFailedEvent.cs
- BackgroundFormatInfo.cs
- PointCollection.cs
- OdbcStatementHandle.cs
- SimpleRecyclingCache.cs
- ApplicationActivator.cs
- TableStyle.cs
- AddressUtility.cs
- ClientSettings.cs
- MarkupWriter.cs
- RepeatBehaviorConverter.cs
- BaseValidator.cs
- WindowsAuthenticationEventArgs.cs
- ZipIOLocalFileBlock.cs
- DataGridViewCellConverter.cs
- ErrorRuntimeConfig.cs
- PrintPageEvent.cs
- GeometryModel3D.cs
- IssuedTokensHeader.cs
- RemoteWebConfigurationHostStream.cs
- _UncName.cs
- RawAppCommandInputReport.cs
- TextEditorParagraphs.cs
- RawStylusInputCustomData.cs
- FixUp.cs
- AppSecurityManager.cs
- SystemInformation.cs
- TextHidden.cs
- _ListenerAsyncResult.cs
- DelegatingConfigHost.cs
- XmlExtensionFunction.cs
- Event.cs
- PageRequestManager.cs
- GridLength.cs
- QuaternionAnimation.cs
- DataGridViewBand.cs
- UnsignedPublishLicense.cs
- DateTime.cs
- ToolStripPanelDesigner.cs
- ObjectStateFormatter.cs
- BindingSource.cs
- CodeIterationStatement.cs
- CommonDialog.cs
- XmlChildEnumerator.cs
- WsatServiceCertificate.cs
- storepermissionattribute.cs
- MetadataUtilsSmi.cs
- ThreadExceptionDialog.cs
- WeakReference.cs
- MemberRelationshipService.cs
- SystemIPInterfaceStatistics.cs
- CultureData.cs
- SmtpSection.cs
- GeneralTransformGroup.cs
- ScriptHandlerFactory.cs
- SortedList.cs
- DocumentOrderQuery.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- DependencyPropertyKey.cs
- Lease.cs
- ReachVisualSerializerAsync.cs
- IgnoreFileBuildProvider.cs
- SQLMoneyStorage.cs
- Propagator.Evaluator.cs
- ManualResetEvent.cs
- ListViewUpdateEventArgs.cs
- cookiecontainer.cs
- ProgressBar.cs
- SelectionListComponentEditor.cs
- CreateUserWizard.cs
- XPathBuilder.cs
- ProcessRequestArgs.cs
- CreateRefExpr.cs
- InstanceCreationEditor.cs
- WindowsRichEditRange.cs
- ComUdtElementCollection.cs
- ServiceNameElement.cs
- SHA256.cs
- CallTemplateAction.cs
- RegexWriter.cs
- EventRoute.cs
- HtmlWindow.cs
- TextEffect.cs
- ModelItemDictionaryImpl.cs
- AnnotationMap.cs
- ResourceReferenceExpressionConverter.cs
- SmtpLoginAuthenticationModule.cs
- ClientTarget.cs
- AbsoluteQuery.cs
- InvalidContentTypeException.cs
- FileUtil.cs
- UrlUtility.cs
- TracePayload.cs
- Normalization.cs