Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CustomImportAttribute.cs « Extensibility « Composition « ComponentModel « System « ComponentModelUnitTest « Tests « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0894a2061a91aca6f2c3bf5731d604d742a5773c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
using System;

namespace System.ComponentModel.Composition.Extensibility
{
    [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
    public class CustomImportAttribute : ImportAttribute
    {
        public CustomImportAttribute()
        {
        }

        public CustomImportAttribute(Type type)
            : base(type)
        {
        }
    }
}