Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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 } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartMenu.cs
- JsonClassDataContract.cs
- SubMenuStyle.cs
- COSERVERINFO.cs
- SourceFileBuildProvider.cs
- SiteMapNode.cs
- DBCSCodePageEncoding.cs
- Geometry.cs
- DuplicateWaitObjectException.cs
- WindowsGraphics.cs
- COM2TypeInfoProcessor.cs
- DataControlButton.cs
- Array.cs
- TextHidden.cs
- StandardToolWindows.cs
- oledbconnectionstring.cs
- AlphabeticalEnumConverter.cs
- XsltArgumentList.cs
- SoapFormatExtensions.cs
- Imaging.cs
- DetailsViewRow.cs
- WsatServiceAddress.cs
- _BufferOffsetSize.cs
- MenuCommandsChangedEventArgs.cs
- ValidationRuleCollection.cs
- PackUriHelper.cs
- XmlSchemaSimpleContent.cs
- SrgsOneOf.cs
- TypeInfo.cs
- PathStreamGeometryContext.cs
- ProcessInputEventArgs.cs
- ImplicitInputBrush.cs
- WindowsGraphicsCacheManager.cs
- SyndicationItemFormatter.cs
- ControlFilterExpression.cs
- _UriSyntax.cs
- PersonalizationProviderCollection.cs
- PropertyEmitter.cs
- AmbientLight.cs
- HtmlElementErrorEventArgs.cs
- SortedSet.cs
- FtpWebRequest.cs
- ToolboxDataAttribute.cs
- TabControl.cs
- ErrorHandlerModule.cs
- Image.cs
- CachedCompositeFamily.cs
- XmlAtomicValue.cs
- TextEmbeddedObject.cs
- TypographyProperties.cs
- ShaderEffect.cs
- DynamicValueConverter.cs
- WebPartConnectionsConfigureVerb.cs
- MSHTMLHostUtil.cs
- HwndTarget.cs
- WinEventTracker.cs
- ReadOnlyState.cs
- BoundField.cs
- SystemUdpStatistics.cs
- DataGridViewHitTestInfo.cs
- TextEditorTables.cs
- DataGridRow.cs
- DigitShape.cs
- FormatSettings.cs
- TextFormatterHost.cs
- ToolStripContainer.cs
- InlineUIContainer.cs
- DbResourceAllocator.cs
- MemberRelationshipService.cs
- PanelDesigner.cs
- ReadOnlyDictionary.cs
- RuleInfoComparer.cs
- Pkcs9Attribute.cs
- TempFiles.cs
- GridViewItemAutomationPeer.cs
- NodeInfo.cs
- TextTrailingWordEllipsis.cs
- FileNotFoundException.cs
- DataGridViewTopLeftHeaderCell.cs
- MessagePartProtectionMode.cs
- WizardStepBase.cs
- LeafCellTreeNode.cs
- EntityContainerAssociationSetEnd.cs
- processwaithandle.cs
- HScrollProperties.cs
- XmlValidatingReaderImpl.cs
- parserscommon.cs
- ExceptionRoutedEventArgs.cs
- CompilationUnit.cs
- InvokeMethod.cs
- NativeMethodsCLR.cs
- StsCommunicationException.cs
- ViewPort3D.cs
- XmlArrayAttribute.cs
- WebServiceResponseDesigner.cs
- CancellationTokenRegistration.cs
- UdpChannelListener.cs
- ColumnWidthChangingEvent.cs
- CollectionViewGroupRoot.cs
- TokenBasedSetEnumerator.cs