ModifyActivitiesPropertyDescriptor.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Common / AuthoringOM / Serializer / ModifyActivitiesPropertyDescriptor.cs / 1305376 / ModifyActivitiesPropertyDescriptor.cs

                            namespace System.Workflow.ComponentModel.Serialization 
{
    using System;
    using System.CodeDom;
    using System.ComponentModel; 
    using System.ComponentModel.Design;
    using System.ComponentModel.Design.Serialization; 
    using System.Collections; 
    using System.Resources;
    using System.Workflow.ComponentModel.Design; 
    using System.Collections.Generic;
    using Microsoft.CSharp;
    using System.Workflow.ComponentModel;
    using System.Workflow.ComponentModel.Compiler; 
    using System.CodeDom.Compiler;
    using System.IO; 
    using System.Reflection; 
    using System.Diagnostics;
    #region ModifyActivitiesPropertyDescriptor 

    internal class ModifyActivitiesPropertyDescriptor : PropertyDescriptor
    {
        private PropertyInfo propInfo = null; 

        public ModifyActivitiesPropertyDescriptor(PropertyInfo propInfo) 
            : base("CanModifyActivities", new Attribute[0]) 
        {
            this.propInfo = propInfo; 
        }

        public override bool CanResetValue(object component)
        { 
            throw new NotImplementedException();
        } 
 
        public override Type ComponentType
        { 
            get
            {
                return typeof(CompositeActivity);
            } 
        }
 
        public override object GetValue(object component) 
        {
            return this.propInfo.GetValue(component, null); 
        }

        public override bool IsReadOnly
        { 
            get
            { 
                return false; 
            }
        } 

        public override Type PropertyType
        {
            get 
            {
                return typeof(bool); 
            } 
        }
 
        public override void ResetValue(object component)
        {
            throw new NotImplementedException();
        } 

        public override void SetValue(object component, object value) 
        { 
            this.propInfo.SetValue(component, true, null);
            // Design time, allow changes 
            if (component is CompositeActivity)
                (component as CompositeActivity).SetValue(CompositeActivity.CustomActivityProperty, false);
        }
 
        public override bool ShouldSerializeValue(object component)
        { 
            return false; 
        }
    } 
    #endregion
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK