System.Management.Automation.PSProperty.PSProperty C# (CSharp) Method

PSProperty() private method

private PSProperty ( PropertyInfo info, object owner, bool isInstance ) : System
info PropertyInfo
owner object
isInstance bool
return System
        internal PSProperty(PropertyInfo info, object owner, bool isInstance)
            : this(owner, info.Name, info.CanRead, info.CanWrite, isInstance)
        {
            _propertyInfo = info;
        }

Same methods

PSProperty::PSProperty ( object owner, string name, bool gettable, bool settable, bool isInstance ) : System