[runtime] Fix corlib out of date error with disabled COM
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / ReadOnlyState.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4
5 namespace System.Activities.Presentation.Hosting
6 {
7     using System.Activities.Presentation.View;
8
9     public sealed class ReadOnlyState : ContextItem
10     {
11         public bool IsReadOnly { get; set; }
12
13         public override Type ItemType
14         {
15             get
16             {
17                 return typeof(ReadOnlyState);
18             }
19         }
20     }
21 }