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
- HtmlImage.cs
- odbcmetadatacolumnnames.cs
- IfAction.cs
- UidPropertyAttribute.cs
- PasswordRecovery.cs
- XmlnsDefinitionAttribute.cs
- WebPartsSection.cs
- DllNotFoundException.cs
- SmiRecordBuffer.cs
- XmlSchemaParticle.cs
- HandledEventArgs.cs
- UnmanagedMemoryStreamWrapper.cs
- SelfIssuedAuthProofToken.cs
- TextElementCollectionHelper.cs
- ContentType.cs
- EntitySqlQueryState.cs
- CodeMemberField.cs
- LocalizabilityAttribute.cs
- COSERVERINFO.cs
- TextDecorationCollectionConverter.cs
- CharacterString.cs
- PopupControlService.cs
- UndoManager.cs
- ProfileSettingsCollection.cs
- StyleHelper.cs
- TreeViewTemplateSelector.cs
- FormParameter.cs
- WCFServiceClientProxyGenerator.cs
- SqlDataSourceSelectingEventArgs.cs
- CodeGenerator.cs
- dataprotectionpermission.cs
- ColorConvertedBitmapExtension.cs
- HttpCacheParams.cs
- BrowserDefinition.cs
- DesignColumn.cs
- ListMarkerSourceInfo.cs
- SiteMapNodeCollection.cs
- Baml2006KeyRecord.cs
- xdrvalidator.cs
- AsyncOperationManager.cs
- ExpressionHelper.cs
- CqlParserHelpers.cs
- XappLauncher.cs
- SymbolTable.cs
- ScalarConstant.cs
- BaseResourcesBuildProvider.cs
- DoWhile.cs
- RemoteCryptoSignHashRequest.cs
- BinaryObjectWriter.cs
- OdbcCommand.cs
- HttpModuleCollection.cs
- CodeSubDirectory.cs
- MessageFilter.cs
- StylusCaptureWithinProperty.cs
- HtmlTitle.cs
- LinkedList.cs
- PackWebResponse.cs
- Style.cs
- COM2IDispatchConverter.cs
- TdsParserStateObject.cs
- IdentityVerifier.cs
- ProcessMonitor.cs
- SecurityTokenSerializer.cs
- SchemaAttDef.cs
- VirtualizingPanel.cs
- ListenerTraceUtility.cs
- Monitor.cs
- ServiceReflector.cs
- BridgeDataRecord.cs
- ThicknessAnimationBase.cs
- TypeCacheManager.cs
- ActivityDelegate.cs
- PointKeyFrameCollection.cs
- SimpleBitVector32.cs
- InstanceValue.cs
- SQlBooleanStorage.cs
- IntermediatePolicyValidator.cs
- BitmapEffectDrawingContent.cs
- BitmapCache.cs
- SafeFileMappingHandle.cs
- DataMember.cs
- WebBaseEventKeyComparer.cs
- PackWebResponse.cs
- TextSelectionHelper.cs
- DbConnectionStringBuilder.cs
- LicenseException.cs
- Int32RectConverter.cs
- SQLBinaryStorage.cs
- HtmlTableCellCollection.cs
- HttpEncoderUtility.cs
- TextDecorationUnitValidation.cs
- CreateUserWizard.cs
- SvcFileManager.cs
- ConfigurationPermission.cs
- BlockCollection.cs
- XslTransform.cs
- EntityContainerEmitter.cs
- StringSource.cs
- DataColumnMappingCollection.cs
- TrustManagerPromptUI.cs