summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Runtime/InteropServices/ICustomFactory.cs
blob: 6b06b46d6adb9c93e175a37451d25b02194c1229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
namespace System.Runtime.InteropServices {

    using System;

[System.Runtime.InteropServices.ComVisible(true)]
    public interface ICustomFactory
    {
        MarshalByRefObject CreateInstance(Type serverType);
    }

}