Machete.Runtime.RuntimeTypes.SpecificationTypes.SPropertyDescriptor.Copy C# (CSharp) Method

Copy() public method

public Copy ( ) : IPropertyDescriptor
return IPropertyDescriptor
        public IPropertyDescriptor Copy()
        {
            return new SPropertyDescriptor()
            {
                Value = Value,
                Writable = Writable,
                Get = Get,
                Set = Set,
                Enumerable = Enumerable,
                Configurable = Configurable
            };
        }
SPropertyDescriptor