Files
Dec2017-Script-Dump/mscorlib/System/Runtime/InteropServices/ICustomFactory.cs
T
2026-06-04 11:42:34 +02:00

17 lines
618 B
C#

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