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

namespace System {
    
    using System;
    using System.Runtime.InteropServices;


    public interface IServiceProvider
    {
        // Interface does not need to be marked with the serializable attribute
        Object GetService(Type serviceType);
    }
}