System.Management.Automation.PSProperty.PSProperty C# (CSharp) 메소드

PSProperty() 개인적인 메소드

private PSProperty ( PropertyInfo info, object owner, bool isInstance ) : System
info PropertyInfo
owner object
isInstance bool
리턴 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