File: cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\ReadOnlyState.cs
Project: ndp\System.Data.csproj (System.Data)
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//----------------------------------------------------------------
 
namespace System.Activities.Presentation.Hosting
{
    using System.Activities.Presentation.View;
 
    public sealed class ReadOnlyState : ContextItem
    {
        public bool IsReadOnly { get; set; }
 
        public override Type ItemType
        {
            get
            {
                return typeof(ReadOnlyState);
            }
        }
    }
}