singrdk/base/Imported/Bartok/Reflection/Module.cs

43 lines
1.3 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
// The Module class represents a module in the COM+ runtime. A module
// may consist of one or more classes and interfaces and represents a physical
// deployment such as a DLL or EXE of those classes. There may be multiple namespaces
// contained in a single module and a namespace may be span multiple modules.
//
// The runtime supports a special type of module that are dynamically created. New
// classes can be created through the dynamic IL generation process.
//
2008-11-17 18:29:00 -05:00
namespace System.Reflection
{
2008-03-05 09:52:00 -05:00
using System;
using System.Runtime.CompilerServices;
//| <include path='docs/doc[@for="Module"]/*' />
[RequiredByBartok]
public class Module
{
2008-11-17 18:29:00 -05:00
[RequiredByBartok]
private Assembly assembly;
[RequiredByBartok]
private String scopeName;
public Assembly Assembly
{
[NoHeapAllocation]
get { return assembly; }
}
public String ScopeName
{
get { return scopeName; }
}
2008-03-05 09:52:00 -05:00
}
}