Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Metadata / ObjectLayer / ImmutableAssemblyCacheEntry.cs / 1305376 / ImmutableAssemblyCacheEntry.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Collections.Generic; using System.Reflection; namespace System.Data.Metadata.Edm { internal partial class ImmutableAssemblyCacheEntry : AssemblyCacheEntry { // types in "this" assembly private readonly System.Collections.ObjectModel.ReadOnlyCollection_typesInAssembly; // other assemblies referenced by types we care about in "this" assembly private readonly System.Collections.ObjectModel.ReadOnlyCollection _closureAssemblies; internal ImmutableAssemblyCacheEntry(MutableAssemblyCacheEntry mutableEntry) { _typesInAssembly = new List (mutableEntry.TypesInAssembly).AsReadOnly(); _closureAssemblies = new List (mutableEntry.ClosureAssemblies).AsReadOnly(); } internal override IList TypesInAssembly { get { return _typesInAssembly; } } internal override IList ClosureAssemblies { get { return _closureAssemblies; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BufferedGraphics.cs
- BamlBinaryReader.cs
- SchemaCollectionPreprocessor.cs
- ServiceContractGenerator.cs
- ClaimTypes.cs
- WorkItem.cs
- DisplayNameAttribute.cs
- ContentTextAutomationPeer.cs
- PaperSize.cs
- Calendar.cs
- XPathBinder.cs
- StandardToolWindows.cs
- HtmlImage.cs
- ProviderUtil.cs
- SqlProviderUtilities.cs
- HttpCookiesSection.cs
- ControllableStoryboardAction.cs
- DefaultValueConverter.cs
- MenuItem.cs
- PatternMatcher.cs
- TdsEnums.cs
- TimelineGroup.cs
- Nodes.cs
- SmtpNtlmAuthenticationModule.cs
- ImportDesigner.xaml.cs
- TraceRecord.cs
- _LocalDataStoreMgr.cs
- TextSelectionProcessor.cs
- SignatureToken.cs
- AuthorizationSection.cs
- CreateUserWizardStep.cs
- ConfigurationCollectionAttribute.cs
- MobileControlDesigner.cs
- AsyncContentLoadedEventArgs.cs
- webeventbuffer.cs
- GetPageCompletedEventArgs.cs
- TextMarkerSource.cs
- MailHeaderInfo.cs
- NetNamedPipeSecurity.cs
- TemplateControlParser.cs
- HttpHandler.cs
- WindowsIPAddress.cs
- XmlMembersMapping.cs
- RangeEnumerable.cs
- ToolboxItem.cs
- ClonableStack.cs
- MethodBuilder.cs
- PasswordPropertyTextAttribute.cs
- NameValueFileSectionHandler.cs
- DiagnosticEventProvider.cs
- RawStylusActions.cs
- ToolStripLocationCancelEventArgs.cs
- XsdValidatingReader.cs
- Pens.cs
- VirtualPath.cs
- DiscreteKeyFrames.cs
- NonBatchDirectoryCompiler.cs
- HtmlEncodedRawTextWriter.cs
- ToolStripButton.cs
- AccessorTable.cs
- DataPagerCommandEventArgs.cs
- GeneralTransform3D.cs
- TextBoxRenderer.cs
- ImageListUtils.cs
- TemplateXamlTreeBuilder.cs
- DataBindingHandlerAttribute.cs
- VirtualPath.cs
- PreviewKeyDownEventArgs.cs
- FormView.cs
- MulticastIPAddressInformationCollection.cs
- Descriptor.cs
- WindowsListViewScroll.cs
- TableSectionStyle.cs
- WebServiceErrorEvent.cs
- SpellCheck.cs
- ScriptingProfileServiceSection.cs
- DynamicResourceExtensionConverter.cs
- FormViewUpdatedEventArgs.cs
- DigitShape.cs
- StylusPointCollection.cs
- PreProcessor.cs
- ProtocolViolationException.cs
- MissingFieldException.cs
- TransactionFlowElement.cs
- FixedDSBuilder.cs
- XamlStackWriter.cs
- UniqueIdentifierService.cs
- ZoneButton.cs
- ValuePattern.cs
- HierarchicalDataBoundControl.cs
- BoundingRectTracker.cs
- RotateTransform3D.cs
- BindingExpression.cs
- DBNull.cs
- ListViewItem.cs
- XmlMapping.cs
- APCustomTypeDescriptor.cs
- SymbolEqualComparer.cs
- DataListCommandEventArgs.cs
- PassportAuthenticationEventArgs.cs