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
- CssTextWriter.cs
- ToolboxSnapDragDropEventArgs.cs
- ColorTransform.cs
- EnumerableCollectionView.cs
- AssertHelper.cs
- PriorityChain.cs
- QilScopedVisitor.cs
- COM2IPerPropertyBrowsingHandler.cs
- LazyTextWriterCreator.cs
- AddInToken.cs
- TextTreeNode.cs
- WmlTextBoxAdapter.cs
- PositiveTimeSpanValidator.cs
- XpsColorContext.cs
- StackBuilderSink.cs
- ExpressionDumper.cs
- IntPtr.cs
- EditorPartCollection.cs
- ListControlDataBindingHandler.cs
- Configuration.cs
- ConsoleKeyInfo.cs
- MetadataHelper.cs
- DataColumnMapping.cs
- StreamUpgradeProvider.cs
- Formatter.cs
- TypefaceCollection.cs
- COM2ExtendedUITypeEditor.cs
- HostedNamedPipeTransportManager.cs
- ClockController.cs
- FrugalMap.cs
- DataView.cs
- XmlSchemaRedefine.cs
- CodeAttributeArgumentCollection.cs
- DefaultPerformanceCounters.cs
- UnauthorizedWebPart.cs
- SQLRoleProvider.cs
- RoutedCommand.cs
- WebPartMinimizeVerb.cs
- X509SecurityTokenAuthenticator.cs
- WindowsTab.cs
- Expr.cs
- TextBoxBaseDesigner.cs
- DataBindingCollectionEditor.cs
- RtfToXamlReader.cs
- CreateParams.cs
- TextBoxAutoCompleteSourceConverter.cs
- TextMetrics.cs
- StreamSecurityUpgradeAcceptor.cs
- OdbcFactory.cs
- AnnotationComponentManager.cs
- RequestDescription.cs
- __Error.cs
- PassportAuthenticationModule.cs
- ToolStripOverflow.cs
- DeploymentSection.cs
- SynchronizedDispatch.cs
- StringConverter.cs
- PersonalizationDictionary.cs
- MetadataProperty.cs
- ReflectionPermission.cs
- ToolZone.cs
- LinkLabelLinkClickedEvent.cs
- PackageProperties.cs
- ListViewPagedDataSource.cs
- LayoutEvent.cs
- WindowsScroll.cs
- SqlAggregateChecker.cs
- WindowPatternIdentifiers.cs
- RowToFieldTransformer.cs
- _LoggingObject.cs
- ListView.cs
- AssemblyBuilder.cs
- FontInfo.cs
- ContainerParaClient.cs
- TreeWalker.cs
- ExpressionBuilder.cs
- DocumentReference.cs
- DefaultValueTypeConverter.cs
- SqlInfoMessageEvent.cs
- TableAdapterManagerMethodGenerator.cs
- WebPartCancelEventArgs.cs
- ArrayListCollectionBase.cs
- ConcurrentStack.cs
- BitmapCache.cs
- FlowchartStart.xaml.cs
- WorkflowInstanceTerminatedRecord.cs
- HtmlHead.cs
- DataGridViewLinkColumn.cs
- XmlStringTable.cs
- ParameterBuilder.cs
- ObjectTag.cs
- Attributes.cs
- LocalizableResourceBuilder.cs
- SplitContainer.cs
- ColumnTypeConverter.cs
- XamlSerializerUtil.cs
- CustomErrorsSectionWrapper.cs
- SID.cs
- CqlLexer.cs
- ButtonField.cs