Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Reflection / ManifestResourceInfo.cs / 1305376 / 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; public 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. [Serializable] [Flags] [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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSerializerSection.cs
- MemberExpression.cs
- PointCollection.cs
- PreparingEnlistment.cs
- UserInitiatedNavigationPermission.cs
- BamlTreeNode.cs
- LZCodec.cs
- Stylesheet.cs
- ExceptionHelpers.cs
- COM2ICategorizePropertiesHandler.cs
- HandlerWithFactory.cs
- ViewManager.cs
- GraphicsPathIterator.cs
- CompositionDesigner.cs
- SqlProfileProvider.cs
- StoreContentChangedEventArgs.cs
- PassportAuthenticationModule.cs
- CodeNamespaceImport.cs
- VisualBrush.cs
- DashStyle.cs
- XmlBinaryReader.cs
- WSDualHttpSecurityMode.cs
- ObjectQueryExecutionPlan.cs
- MachineKeySection.cs
- base64Transforms.cs
- CookielessHelper.cs
- Int64AnimationUsingKeyFrames.cs
- __ComObject.cs
- Label.cs
- WpfPayload.cs
- Column.cs
- PersonalizationAdministration.cs
- DiagnosticsConfiguration.cs
- AspNetSynchronizationContext.cs
- CodeSnippetStatement.cs
- RowCache.cs
- DynamicValueConverter.cs
- QuaternionIndependentAnimationStorage.cs
- ControlPager.cs
- EntityCommandDefinition.cs
- FixedHighlight.cs
- InvocationExpression.cs
- StateManagedCollection.cs
- RegexCapture.cs
- WindowsFormsLinkLabel.cs
- ConstraintCollection.cs
- ProviderCommandInfoUtils.cs
- WebEventCodes.cs
- ButtonBaseDesigner.cs
- SelectedDatesCollection.cs
- UIPermission.cs
- AttributeData.cs
- MemberInfoSerializationHolder.cs
- OrderedDictionary.cs
- HttpListenerPrefixCollection.cs
- UrlPath.cs
- OptimizerPatterns.cs
- WindowsServiceCredential.cs
- Tile.cs
- FragmentNavigationEventArgs.cs
- BasicHttpSecurityMode.cs
- SafeNativeMethods.cs
- Hashtable.cs
- uribuilder.cs
- ToolstripProfessionalRenderer.cs
- HttpCookie.cs
- dbdatarecord.cs
- LocationUpdates.cs
- CryptoApi.cs
- HierarchicalDataSourceControl.cs
- ScriptControlManager.cs
- WebPartTransformerCollection.cs
- TCPListener.cs
- StatusBarItemAutomationPeer.cs
- StrongNameHelpers.cs
- DeferredElementTreeState.cs
- PropertyInformationCollection.cs
- XmlNodeReader.cs
- MDIClient.cs
- PathSegmentCollection.cs
- ConnectionManager.cs
- printdlgexmarshaler.cs
- SchemaImporter.cs
- _ConnectionGroup.cs
- Bezier.cs
- DataGridToolTip.cs
- EventWaitHandleSecurity.cs
- BStrWrapper.cs
- BinaryConverter.cs
- DbQueryCommandTree.cs
- FilePrompt.cs
- DataServiceRequestException.cs
- SocketPermission.cs
- PointLight.cs
- BamlVersionHeader.cs
- ipaddressinformationcollection.cs
- CaseInsensitiveHashCodeProvider.cs
- CompiledXpathExpr.cs
- RawStylusInputCustomDataList.cs
- OracleConnectionString.cs