Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Metadata / ObjectLayer / AssemblyCacheEntry.cs / 1305376 / AssemblyCacheEntry.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Collections.Generic; using System.Reflection; namespace System.Data.Metadata.Edm { internal abstract class AssemblyCacheEntry { internal abstract IListTypesInAssembly { get; } internal abstract IList ClosureAssemblies { get; } internal bool TryGetEdmType(string typeName, out EdmType edmType) { edmType = null; foreach (EdmType loadedEdmType in this.TypesInAssembly) { if (loadedEdmType.Identity == typeName) { edmType = loadedEdmType; break; } } return (edmType != null); } internal bool ContainsType(string typeName) { EdmType edmType = null; return TryGetEdmType(typeName, out edmType); } } } // 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
- TextBox.cs
- PrintPageEvent.cs
- IisTraceListener.cs
- DataGridViewCellStyleChangedEventArgs.cs
- RequestQueue.cs
- NetworkStream.cs
- BlockExpression.cs
- MsmqInputMessagePool.cs
- HttpChannelHelper.cs
- CollectionViewSource.cs
- XmlDataImplementation.cs
- ErrorStyle.cs
- XmlAttributeCache.cs
- FormViewCommandEventArgs.cs
- FormViewRow.cs
- ImageSourceConverter.cs
- HealthMonitoringSection.cs
- RtfToken.cs
- WeakReadOnlyCollection.cs
- CodeEntryPointMethod.cs
- CalendarItem.cs
- DateTimeFormatInfoScanner.cs
- PathStreamGeometryContext.cs
- AttachedProperty.cs
- OleDbRowUpdatedEvent.cs
- DataGridItemAttachedStorage.cs
- AspNetSynchronizationContext.cs
- DesignerTransactionCloseEvent.cs
- FindCriteria.cs
- TypeLibConverter.cs
- RedirectionProxy.cs
- WindowsToolbarAsMenu.cs
- KerberosRequestorSecurityTokenAuthenticator.cs
- xamlnodes.cs
- RichTextBoxDesigner.cs
- DataGridBeginningEditEventArgs.cs
- storepermissionattribute.cs
- MsmqIntegrationSecurity.cs
- CompModSwitches.cs
- AssemblyAttributesGoHere.cs
- ToolTipAutomationPeer.cs
- DataGridHeaderBorder.cs
- TransactionsSectionGroup.cs
- cache.cs
- UpDownBaseDesigner.cs
- ContractHandle.cs
- UnknownWrapper.cs
- WebBodyFormatMessageProperty.cs
- TrustManagerPromptUI.cs
- InternalEnumValidator.cs
- ExpressionNode.cs
- TreeIterator.cs
- SendingRequestEventArgs.cs
- Pair.cs
- DelegatingConfigHost.cs
- HwndAppCommandInputProvider.cs
- CompilationLock.cs
- ReferenceConverter.cs
- CommandBinding.cs
- DiscreteKeyFrames.cs
- IgnoreSectionHandler.cs
- UIElementPropertyUndoUnit.cs
- Form.cs
- PolicyFactory.cs
- XmlAttributes.cs
- DbModificationClause.cs
- NetworkInformationException.cs
- FactorySettingsElement.cs
- UserInitiatedNavigationPermission.cs
- Deflater.cs
- CompositeActivityDesigner.cs
- WinInetCache.cs
- Size.cs
- ChangeDirector.cs
- D3DImage.cs
- ProfileProvider.cs
- DbConnectionPoolCounters.cs
- DataListItemEventArgs.cs
- PerformanceCounterPermissionAttribute.cs
- PagesChangedEventArgs.cs
- DataGridViewToolTip.cs
- ProviderConnectionPointCollection.cs
- ConstraintEnumerator.cs
- AnnouncementEndpointElement.cs
- ImageClickEventArgs.cs
- CompModSwitches.cs
- CodeObjectCreateExpression.cs
- Win32Exception.cs
- ValueProviderWrapper.cs
- ApplicationServiceManager.cs
- AccessDataSource.cs
- InputProcessorProfiles.cs
- PrintSystemException.cs
- ResourceKey.cs
- SchemaElementLookUpTable.cs
- ManagedFilter.cs
- SqlDataRecord.cs
- _SSPIWrapper.cs
- DataGridViewCellEventArgs.cs
- SocketInformation.cs