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
- Message.cs
- Vector3DCollectionValueSerializer.cs
- indexingfiltermarshaler.cs
- sqlnorm.cs
- SqlParameter.cs
- HighlightComponent.cs
- Size3DValueSerializer.cs
- DBDataPermissionAttribute.cs
- MsmqIntegrationProcessProtocolHandler.cs
- OracleConnectionFactory.cs
- ImageField.cs
- SafeArrayTypeMismatchException.cs
- RequestQueue.cs
- PerformanceCounterManager.cs
- HexParser.cs
- SignedPkcs7.cs
- RawStylusInputCustomDataList.cs
- CommonDialog.cs
- KerberosTicketHashIdentifierClause.cs
- Propagator.cs
- StrokeFIndices.cs
- XslVisitor.cs
- UnmanagedHandle.cs
- StylusLogic.cs
- ComponentEvent.cs
- XPathAncestorQuery.cs
- PartialArray.cs
- ControlParser.cs
- Point3DConverter.cs
- VirtualDirectoryMapping.cs
- MissingFieldException.cs
- MessageQueueEnumerator.cs
- RectKeyFrameCollection.cs
- CachedCompositeFamily.cs
- TemplatePropertyEntry.cs
- CornerRadius.cs
- InlineObject.cs
- IntranetCredentialPolicy.cs
- Binding.cs
- TextPointerBase.cs
- Lease.cs
- ExpressionBuilder.cs
- UserMapPath.cs
- RectKeyFrameCollection.cs
- ByteRangeDownloader.cs
- Number.cs
- QueryAccessibilityHelpEvent.cs
- DataExpression.cs
- DrawingGroupDrawingContext.cs
- LeaseManager.cs
- ConfigsHelper.cs
- CapabilitiesSection.cs
- Size.cs
- StdValidatorsAndConverters.cs
- XmlQueryOutput.cs
- IPipelineRuntime.cs
- EdmTypeAttribute.cs
- OneWayChannelFactory.cs
- XmlCompatibilityReader.cs
- FormViewPagerRow.cs
- HwndKeyboardInputProvider.cs
- Metafile.cs
- SingleKeyFrameCollection.cs
- ResourceDisplayNameAttribute.cs
- ButtonFieldBase.cs
- Panel.cs
- Literal.cs
- ItemMap.cs
- WeakHashtable.cs
- BamlBinaryReader.cs
- NameValuePair.cs
- Array.cs
- HMAC.cs
- XmlNodeList.cs
- HtmlControlPersistable.cs
- SqlDataSource.cs
- ProgressiveCrcCalculatingStream.cs
- Variant.cs
- ProviderUtil.cs
- TracingConnectionInitiator.cs
- Attribute.cs
- SoapServerProtocol.cs
- AssemblySettingAttributes.cs
- Deflater.cs
- Win32Exception.cs
- RegisteredArrayDeclaration.cs
- CodeTypeDelegate.cs
- SchemaMerger.cs
- HttpContextServiceHost.cs
- ItemType.cs
- safesecurityhelperavalon.cs
- Clock.cs
- Bold.cs
- TagPrefixAttribute.cs
- DummyDataSource.cs
- XPathEmptyIterator.cs
- TextServicesDisplayAttributePropertyRanges.cs
- EventRecord.cs
- ToolCreatedEventArgs.cs
- DataGridColumnReorderingEventArgs.cs