Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Reflection / ManifestResourceInfo.cs / 1 / ManifestResourceInfo.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: ManifestResourceInfo ** ** ** Purpose: For info regarding a manifest resource's topology. ** ** =============================================================================*/ namespace System.Reflection { using System; [System.Runtime.InteropServices.ComVisible(true)] public class ManifestResourceInfo { private Assembly _containingAssembly; private String _containingFileName; private ResourceLocation _resourceLocation; internal ManifestResourceInfo(Assembly containingAssembly, String containingFileName, ResourceLocation resourceLocation) { _containingAssembly = containingAssembly; _containingFileName = containingFileName; _resourceLocation = resourceLocation; } public virtual Assembly ReferencedAssembly { get { return _containingAssembly; } } public virtual String FileName { get { return _containingFileName; } } public virtual ResourceLocation ResourceLocation { get { return _resourceLocation; } } } // The ResourceLocation is a combination of these flags, set or not. // Linked means not Embedded. [Flags, Serializable] [System.Runtime.InteropServices.ComVisible(true)] public enum ResourceLocation { Embedded = 0x1, ContainedInAnotherAssembly = 0x2, ContainedInManifestFile = 0x4 } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OracleRowUpdatingEventArgs.cs
- SectionInput.cs
- PackagingUtilities.cs
- FileStream.cs
- IDReferencePropertyAttribute.cs
- ScrollChrome.cs
- PkcsUtils.cs
- AnnotationHelper.cs
- ListViewUpdatedEventArgs.cs
- ResizeBehavior.cs
- LockedAssemblyCache.cs
- XomlCompiler.cs
- EdmComplexPropertyAttribute.cs
- RegisteredExpandoAttribute.cs
- Shape.cs
- ActiveXContainer.cs
- ManagementObjectCollection.cs
- ColorConvertedBitmapExtension.cs
- ButtonColumn.cs
- BamlBinaryReader.cs
- ShowExpandedMultiValueConverter.cs
- QueryCorrelationInitializer.cs
- DesignerActionService.cs
- HorizontalAlignConverter.cs
- TextFragmentEngine.cs
- WebConfigurationManager.cs
- TrackingStringDictionary.cs
- VectorValueSerializer.cs
- ControlCachePolicy.cs
- CanExecuteRoutedEventArgs.cs
- Classification.cs
- ProtocolsConfigurationEntry.cs
- ObfuscateAssemblyAttribute.cs
- FunctionMappingTranslator.cs
- ToolStripCustomTypeDescriptor.cs
- ResourceWriter.cs
- XmlHierarchyData.cs
- HtmlDocument.cs
- FtpCachePolicyElement.cs
- QueryableDataSourceView.cs
- FakeModelItemImpl.cs
- FilterFactory.cs
- Win32SafeHandles.cs
- UInt16Converter.cs
- IntegerFacetDescriptionElement.cs
- Comparer.cs
- SqlEnums.cs
- XamlTypeMapperSchemaContext.cs
- Application.cs
- EventRouteFactory.cs
- BuildResult.cs
- Pair.cs
- EpmCustomContentSerializer.cs
- COM2ExtendedUITypeEditor.cs
- AssertHelper.cs
- XpsS0ValidatingLoader.cs
- GeneralTransform3DGroup.cs
- EmptyReadOnlyDictionaryInternal.cs
- EntityCommandCompilationException.cs
- Canvas.cs
- XsltCompileContext.cs
- PointAnimation.cs
- ObjectNotFoundException.cs
- FilterableData.cs
- StringCollection.cs
- PointConverter.cs
- ExpressionBinding.cs
- XmlIlTypeHelper.cs
- BindingSource.cs
- SByteConverter.cs
- Crc32Helper.cs
- WebPartCatalogCloseVerb.cs
- SourceFilter.cs
- SecurityIdentifierElementCollection.cs
- ApplicationServicesHostFactory.cs
- SelectionItemProviderWrapper.cs
- IndicShape.cs
- ConfigurationValue.cs
- EventToken.cs
- WebPart.cs
- DeferredSelectedIndexReference.cs
- WorkflowServiceHost.cs
- SupportsEventValidationAttribute.cs
- ContextQuery.cs
- ThreadSafeMessageFilterTable.cs
- XmlBinaryReader.cs
- Tool.cs
- NavigationExpr.cs
- StructuralComparisons.cs
- ToolConsole.cs
- LeaseManager.cs
- XmlQualifiedNameTest.cs
- ReferentialConstraint.cs
- PermissionRequestEvidence.cs
- BitmapEffectRenderDataResource.cs
- ChameleonKey.cs
- KnownTypeAttribute.cs
- DateTimeValueSerializerContext.cs
- HashStream.cs
- HTTPNotFoundHandler.cs