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

ProgIdAttribute.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7db764fef0c452dfe47d5068b4f8700e53f3e9f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// System.Runtime.InteropServices.ProgIdAttribute.cs
//
// Name: Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

using System;

namespace System.Runtime.InteropServices {

	[AttributeUsage (AttributeTargets.Class)]
	public sealed class ProgIdAttribute : Attribute
	{
		string pid;
		
		public ProgIdAttribute (string progId)
		{
			pid = progId;
		}

		public string Value {
			get { return pid; }
		}
	}

}