using System;
namespace System.Runtime.InteropServices
{
/// Enables users to write activation code for managed objects that extend .
// Token: 0x0200031A RID: 794
[ComVisible(true)]
public interface ICustomFactory
{
/// Creates a new instance of the specified type.
/// A associated with the specified type.
/// The type to activate.
// Token: 0x0600221C RID: 8732
MarshalByRefObject CreateInstance(Type serverType);
}
}