Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ToolboxItemFilterAttribute.cs
- TextParagraphProperties.cs
- TokenizerHelper.cs
- GroupDescription.cs
- ContentOperations.cs
- LockedHandleGlyph.cs
- LinqDataSource.cs
- SqlCachedBuffer.cs
- BufferedGenericXmlSecurityToken.cs
- DataReceivedEventArgs.cs
- BooleanSwitch.cs
- Automation.cs
- EventMemberCodeDomSerializer.cs
- ControllableStoryboardAction.cs
- InteropBitmapSource.cs
- RelationalExpressions.cs
- ToolStripOverflowButton.cs
- QilParameter.cs
- SplitterPanel.cs
- ReflectTypeDescriptionProvider.cs
- WindowsScroll.cs
- HuffModule.cs
- SiteMapNodeItemEventArgs.cs
- CodeTypeParameter.cs
- ZipFileInfoCollection.cs
- VolatileEnlistmentMultiplexing.cs
- DecimalStorage.cs
- loginstatus.cs
- Brush.cs
- Native.cs
- DisplayMemberTemplateSelector.cs
- HostingPreferredMapPath.cs
- InvalidAsynchronousStateException.cs
- SID.cs
- RijndaelManaged.cs
- CodeAttributeDeclaration.cs
- ByteStreamGeometryContext.cs
- HandlerFactoryWrapper.cs
- ClientScriptManager.cs
- CheckPair.cs
- SelectionPattern.cs
- TextHidden.cs
- Msmq.cs
- AlternateViewCollection.cs
- DataTableMappingCollection.cs
- CodeMethodReturnStatement.cs
- DataControlFieldCollection.cs
- SmiTypedGetterSetter.cs
- TrimSurroundingWhitespaceAttribute.cs
- AssemblyBuilder.cs
- SafeNativeMethods.cs
- TypeBinaryExpression.cs
- LogReservationCollection.cs
- TemplateNameScope.cs
- StylusPointPropertyUnit.cs
- ParameterCollectionEditorForm.cs
- ProviderConnectionPoint.cs
- DropSourceBehavior.cs
- CodeGeneratorOptions.cs
- FontSource.cs
- StrongBox.cs
- SymmetricAlgorithm.cs
- JsonSerializer.cs
- StylusSystemGestureEventArgs.cs
- KeyValuePair.cs
- _NtlmClient.cs
- documentsequencetextpointer.cs
- DataTableReaderListener.cs
- WindowsHyperlink.cs
- SessionParameter.cs
- Certificate.cs
- PageAsyncTask.cs
- CollectionConverter.cs
- TreeIterators.cs
- ObjectDisposedException.cs
- DataServiceRequestOfT.cs
- PersistenceTypeAttribute.cs
- TextSchema.cs
- Char.cs
- ComponentGuaranteesAttribute.cs
- SafeNativeMethodsOther.cs
- AssemblyCollection.cs
- EdmToObjectNamespaceMap.cs
- ListItemConverter.cs
- ModifyActivitiesPropertyDescriptor.cs
- SqlNodeTypeOperators.cs
- XmlSchemaAttributeGroupRef.cs
- BoolExpr.cs
- JsonGlobals.cs
- ImagingCache.cs
- HttpCacheVary.cs
- HostProtectionPermission.cs
- Msec.cs
- TypefaceMap.cs
- CombinedTcpChannel.cs
- RuleSettingsCollection.cs
- Deflater.cs
- TextClipboardData.cs
- WrappedKeySecurityToken.cs
- linebase.cs