2004-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Contexts / ContextProperty.cs
1 //
2 // System.Runtime.Remoting.Contexts.ContextProperty..cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc.  http://www.ximian.com
7 //
8
9 using System;
10
11 namespace System.Runtime.Remoting.Contexts {
12
13         public class ContextProperty
14         {
15                 string name;
16                 object prop;
17                 
18                 private ContextProperty (string name, object prop)
19                 {
20                         this.name = name;
21                         this.prop = prop;
22                 }
23                 
24                 public virtual string Name {
25                         get { return name; } 
26                 }
27
28                 public virtual object Property {
29                         get { return prop; }
30                 }
31         }
32 }