Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeNamespace.cs / 1 / CodeNamespace.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.Serialization; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeNamespace: CodeObject { private string name; private CodeNamespaceImportCollection imports = new CodeNamespaceImportCollection(); private CodeCommentStatementCollection comments = new CodeCommentStatementCollection(); private CodeTypeDeclarationCollection classes = new CodeTypeDeclarationCollection(); private CodeNamespaceCollection namespaces = new CodeNamespaceCollection(); private int populated = 0x0; private const int ImportsCollection = 0x1; private const int CommentsCollection = 0x2; private const int TypesCollection = 0x4; #if CODEDOM_NESTED_NAMESPACES private const int NamespacesCollection = 0x8; #endif ////// Represents a /// namespace declaration. /// ////// public event EventHandler PopulateComments; ////// An event that will be fired the first time the Comments Collection is accessed. /// ////// public event EventHandler PopulateImports; #if CODEDOM_NESTED_NAMESPACES ////// An event that will be fired the first time the Imports Collection is accessed. /// ////// public event EventHandler PopulateNamespaces; #endif ////// An event that will be fired the first time the Namespaces Collection is accessed. /// ////// public event EventHandler PopulateTypes; ////// An event that will be fired the first time the Types Collection is accessed. /// ////// public CodeNamespace() { } ////// Initializes a new instance of ///. /// /// public CodeNamespace(string name) { Name = name; } private CodeNamespace(SerializationInfo info, StreamingContext context) { } ////// Initializes a new instance of ///using the specified name. /// /// public CodeTypeDeclarationCollection Types { get { if (0 == (populated & TypesCollection)) { populated |= TypesCollection; if (PopulateTypes != null) PopulateTypes(this, EventArgs.Empty); } return classes; } } ////// Gets or sets the collection of classes. /// ////// public CodeNamespaceImportCollection Imports { get { if (0 == (populated & ImportsCollection)) { populated |= ImportsCollection; if (PopulateImports != null) PopulateImports(this, EventArgs.Empty); } return imports; } } ////// Gets or sets the collection of namespace imports used by the represented /// namespace. /// ////// public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } #if CODEDOM_NESTED_NAMESPACES ////// Gets or sets the name of the namespace. /// ////// public CodeNamespaceCollection Namespaces { get { if (0 == (populated & NamespacesCollection)) { populated |= NamespacesCollection; if (PopulateNamespaces != null) PopulateNamespaces(this, EventArgs.Empty); } return namespaces; } } #endif ////// Gets or sets the collection of Namespaces. /// ////// public CodeCommentStatementCollection Comments { get { if (0 == (populated & CommentsCollection)) { populated |= CommentsCollection; if (PopulateComments != null) PopulateComments(this, EventArgs.Empty); } return comments; } } } } // 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.Runtime.Serialization; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeNamespace: CodeObject { private string name; private CodeNamespaceImportCollection imports = new CodeNamespaceImportCollection(); private CodeCommentStatementCollection comments = new CodeCommentStatementCollection(); private CodeTypeDeclarationCollection classes = new CodeTypeDeclarationCollection(); private CodeNamespaceCollection namespaces = new CodeNamespaceCollection(); private int populated = 0x0; private const int ImportsCollection = 0x1; private const int CommentsCollection = 0x2; private const int TypesCollection = 0x4; #if CODEDOM_NESTED_NAMESPACES private const int NamespacesCollection = 0x8; #endif ////// Represents a /// namespace declaration. /// ////// public event EventHandler PopulateComments; ////// An event that will be fired the first time the Comments Collection is accessed. /// ////// public event EventHandler PopulateImports; #if CODEDOM_NESTED_NAMESPACES ////// An event that will be fired the first time the Imports Collection is accessed. /// ////// public event EventHandler PopulateNamespaces; #endif ////// An event that will be fired the first time the Namespaces Collection is accessed. /// ////// public event EventHandler PopulateTypes; ////// An event that will be fired the first time the Types Collection is accessed. /// ////// public CodeNamespace() { } ////// Initializes a new instance of ///. /// /// public CodeNamespace(string name) { Name = name; } private CodeNamespace(SerializationInfo info, StreamingContext context) { } ////// Initializes a new instance of ///using the specified name. /// /// public CodeTypeDeclarationCollection Types { get { if (0 == (populated & TypesCollection)) { populated |= TypesCollection; if (PopulateTypes != null) PopulateTypes(this, EventArgs.Empty); } return classes; } } ////// Gets or sets the collection of classes. /// ////// public CodeNamespaceImportCollection Imports { get { if (0 == (populated & ImportsCollection)) { populated |= ImportsCollection; if (PopulateImports != null) PopulateImports(this, EventArgs.Empty); } return imports; } } ////// Gets or sets the collection of namespace imports used by the represented /// namespace. /// ////// public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } #if CODEDOM_NESTED_NAMESPACES ////// Gets or sets the name of the namespace. /// ////// public CodeNamespaceCollection Namespaces { get { if (0 == (populated & NamespacesCollection)) { populated |= NamespacesCollection; if (PopulateNamespaces != null) PopulateNamespaces(this, EventArgs.Empty); } return namespaces; } } #endif ////// Gets or sets the collection of Namespaces. /// ////// public CodeCommentStatementCollection Comments { get { if (0 == (populated & CommentsCollection)) { populated |= CommentsCollection; if (PopulateComments != null) PopulateComments(this, EventArgs.Empty); } return comments; } } } } // 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
- MatrixCamera.cs
- UserControl.cs
- DataGridViewColumnConverter.cs
- HierarchicalDataBoundControl.cs
- VisualBrush.cs
- MetabaseServerConfig.cs
- PtsPage.cs
- iisPickupDirectory.cs
- Byte.cs
- FileRecordSequence.cs
- File.cs
- FrugalList.cs
- StorageScalarPropertyMapping.cs
- SiteIdentityPermission.cs
- RelatedCurrencyManager.cs
- ParameterElementCollection.cs
- FixedPageAutomationPeer.cs
- GeneralTransform3DGroup.cs
- ParallelActivityDesigner.cs
- OneWayElement.cs
- AsymmetricAlgorithm.cs
- DispatchChannelSink.cs
- AutomationPeer.cs
- SoapReflectionImporter.cs
- TimeSpanStorage.cs
- BinHexDecoder.cs
- EdmProperty.cs
- CellTreeNode.cs
- Relationship.cs
- EdmToObjectNamespaceMap.cs
- InputMethodStateChangeEventArgs.cs
- GeneralTransformGroup.cs
- StylusShape.cs
- AndCondition.cs
- DataGridViewButtonCell.cs
- DbDataSourceEnumerator.cs
- InvalidTimeZoneException.cs
- EditorZoneBase.cs
- DocumentGridPage.cs
- OrderedDictionaryStateHelper.cs
- _HelperAsyncResults.cs
- ShapingEngine.cs
- FrameworkPropertyMetadata.cs
- ParserOptions.cs
- XmlAttributeOverrides.cs
- EditorPartCollection.cs
- KeyValueSerializer.cs
- ColorBlend.cs
- TreeNodeCollection.cs
- SimpleType.cs
- LessThanOrEqual.cs
- SecurityRuntime.cs
- PrinterUnitConvert.cs
- EdmValidator.cs
- RsaKeyIdentifierClause.cs
- DragDeltaEventArgs.cs
- StringFormat.cs
- TextElementCollectionHelper.cs
- SequenceDesigner.cs
- TextServicesContext.cs
- CreateUserWizard.cs
- ClonableStack.cs
- StandardBindingElementCollection.cs
- RangeValidator.cs
- ScriptingScriptResourceHandlerSection.cs
- ScrollEventArgs.cs
- WSFederationHttpSecurityMode.cs
- XmlnsCache.cs
- TypeToken.cs
- hresults.cs
- HandlerFactoryCache.cs
- Attribute.cs
- HttpRequest.cs
- PropertyFilter.cs
- FontFamilyValueSerializer.cs
- ResourcesChangeInfo.cs
- MsmqOutputMessage.cs
- XmlUtilWriter.cs
- CharAnimationBase.cs
- AddInControllerImpl.cs
- StandardMenuStripVerb.cs
- SoapElementAttribute.cs
- PropertyChangedEventArgs.cs
- EventListener.cs
- WindowInteropHelper.cs
- EntityContainerEntitySet.cs
- MultitargetUtil.cs
- MiniConstructorInfo.cs
- XmlStringTable.cs
- TrackingProfileSerializer.cs
- WindowsListViewSubItem.cs
- WebPartsSection.cs
- MailMessage.cs
- FramingDecoders.cs
- PeerChannelListener.cs
- BoolLiteral.cs
- ViewGenResults.cs
- XmlSchemaException.cs
- UnsafeNativeMethods.cs
- PropertyKey.cs