Code:
/ FX-1434 / FX-1434 / 1.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
- WebPartHelpVerb.cs
- WebPartManager.cs
- XmlSchemaDatatype.cs
- OleDbCommandBuilder.cs
- PathSegmentCollection.cs
- BaseTreeIterator.cs
- SqlFileStream.cs
- FontCollection.cs
- StateMachineHelpers.cs
- SizeKeyFrameCollection.cs
- Configuration.cs
- LightweightCodeGenerator.cs
- MessageTransmitTraceRecord.cs
- ListCollectionView.cs
- KeyValuePairs.cs
- Quaternion.cs
- FontFamilyValueSerializer.cs
- XmlSchemaImport.cs
- TextureBrush.cs
- DbBuffer.cs
- StreamGeometry.cs
- ReferencedType.cs
- QueryableDataSource.cs
- TextTreePropertyUndoUnit.cs
- HttpServerChannel.cs
- Label.cs
- xml.cs
- DesignerSerializationManager.cs
- DbgCompiler.cs
- DynamicUpdateCommand.cs
- SchemaSetCompiler.cs
- ImageAutomationPeer.cs
- ListViewDeleteEventArgs.cs
- _SSPISessionCache.cs
- PageParserFilter.cs
- DocumentPageView.cs
- ResourceDisplayNameAttribute.cs
- ScriptResourceDefinition.cs
- XMLDiffLoader.cs
- CodeObjectCreateExpression.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- MonitoringDescriptionAttribute.cs
- EllipseGeometry.cs
- NestPullup.cs
- WebPartTransformer.cs
- TemplateControlCodeDomTreeGenerator.cs
- DataGridViewComboBoxEditingControl.cs
- DataBinder.cs
- InvokeBase.cs
- DataGridViewSelectedColumnCollection.cs
- DetailsViewUpdatedEventArgs.cs
- DataTableCollection.cs
- ExpressionEditorSheet.cs
- HttpCachePolicyWrapper.cs
- DependencyPropertyKind.cs
- ProfileSection.cs
- WebMethodAttribute.cs
- CrossAppDomainChannel.cs
- InputProcessorProfiles.cs
- PageVisual.cs
- SafeNativeMethods.cs
- NativeWindow.cs
- Logging.cs
- DataViewSettingCollection.cs
- NamedPermissionSet.cs
- HttpConfigurationSystem.cs
- SequentialUshortCollection.cs
- DataGridViewColumnHeaderCell.cs
- PrintPageEvent.cs
- WebPartDisplayMode.cs
- KeyInterop.cs
- Win32.cs
- RuntimeConfigurationRecord.cs
- UnsafeNativeMethodsCLR.cs
- ApplyImportsAction.cs
- SqlConnection.cs
- ContainerAction.cs
- TagPrefixCollection.cs
- CustomDictionarySources.cs
- TrackBar.cs
- MemberProjectedSlot.cs
- BaseTemplateParser.cs
- XPathNodeIterator.cs
- TraceLog.cs
- SuppressMessageAttribute.cs
- UserPreferenceChangedEventArgs.cs
- HMACSHA256.cs
- BinaryObjectWriter.cs
- PrintController.cs
- GC.cs
- TypeAccessException.cs
- DATA_BLOB.cs
- RegexRunnerFactory.cs
- ObjectListItem.cs
- BamlStream.cs
- TextEditor.cs
- Parameter.cs
- InstanceCreationEditor.cs
- RectangleGeometry.cs
- StyleBamlTreeBuilder.cs