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
- EncryptedType.cs
- SqlDataReaderSmi.cs
- SourceItem.cs
- Evaluator.cs
- RegexCompiler.cs
- MemberPathMap.cs
- EntityAdapter.cs
- OdbcErrorCollection.cs
- KernelTypeValidation.cs
- WindowsComboBox.cs
- RootBuilder.cs
- ProbeMatchesMessage11.cs
- ModelMemberCollection.cs
- XmlProcessingInstruction.cs
- PointLightBase.cs
- ToolBar.cs
- AttachedPropertyMethodSelector.cs
- EditorZone.cs
- XmlChoiceIdentifierAttribute.cs
- VersionedStreamOwner.cs
- ScriptResourceHandler.cs
- XpsSerializerWriter.cs
- ProtocolsSection.cs
- DataGridDetailsPresenterAutomationPeer.cs
- SqlConnectionHelper.cs
- TreeNodeEventArgs.cs
- DataGridCommandEventArgs.cs
- DbMetaDataCollectionNames.cs
- TextTreeUndoUnit.cs
- SwitchAttribute.cs
- ThemeDirectoryCompiler.cs
- RuntimeConfig.cs
- RelatedView.cs
- HtmlControl.cs
- RadioButton.cs
- EventSinkHelperWriter.cs
- WinInetCache.cs
- PipelineModuleStepContainer.cs
- HtmlInputText.cs
- DataViewManagerListItemTypeDescriptor.cs
- HandleCollector.cs
- ContentIterators.cs
- Latin1Encoding.cs
- FormatterConverter.cs
- MenuItemStyleCollection.cs
- JulianCalendar.cs
- SafeEventLogWriteHandle.cs
- ApplicationActivator.cs
- MenuAdapter.cs
- AccessDataSourceView.cs
- MergeLocalizationDirectives.cs
- MemberInitExpression.cs
- FreeFormDesigner.cs
- ColorMatrix.cs
- BoolExpression.cs
- InternalPermissions.cs
- StylusShape.cs
- WebRequest.cs
- AppSettingsSection.cs
- DiscoveryClientReferences.cs
- ExtensionDataReader.cs
- CompiledQuery.cs
- ParsedAttributeCollection.cs
- ItemsChangedEventArgs.cs
- FormViewInsertedEventArgs.cs
- UndirectedGraph.cs
- BinHexEncoder.cs
- SurrogateDataContract.cs
- BuildResult.cs
- ProfessionalColorTable.cs
- SafeSystemMetrics.cs
- QuaternionAnimation.cs
- DrawingDrawingContext.cs
- DrawingContextDrawingContextWalker.cs
- ChildChangedEventArgs.cs
- WebPartCollection.cs
- CodePropertyReferenceExpression.cs
- WebSysDescriptionAttribute.cs
- FixedDocumentPaginator.cs
- Propagator.JoinPropagator.cs
- DefinitionUpdate.cs
- FacetValueContainer.cs
- ReadOnlyAttribute.cs
- CultureInfo.cs
- SelectionGlyphBase.cs
- TextLineBreak.cs
- Dump.cs
- UIElement3D.cs
- ComplexLine.cs
- HandledEventArgs.cs
- RsaSecurityToken.cs
- TemplatedMailWebEventProvider.cs
- AuthenticationManager.cs
- SessionStateModule.cs
- SafeReadContext.cs
- BatchParser.cs
- RectConverter.cs
- KnownColorTable.cs
- MatchAttribute.cs
- CacheAxisQuery.cs