BlueSky.Model.VirtualPropertyDescriptorDynamic.VirtualPropertyDescriptorDynamic C# (CSharp) Метод

VirtualPropertyDescriptorDynamic() публичный Метод

public VirtualPropertyDescriptorDynamic ( VirtualListDynamic fList, int fIndex, string fPropertyName, Type fPropertyType, bool fIsReadOnly ) : System
fList VirtualListDynamic
fIndex int
fPropertyName string
fPropertyType System.Type
fIsReadOnly bool
Результат System
        public VirtualPropertyDescriptorDynamic(VirtualListDynamic fList, int fIndex, string fPropertyName, Type fPropertyType, bool fIsReadOnly)
            : base(fPropertyName, null)
        {
            this.fPropertyName = fPropertyName;
            this.fPropertyType = fPropertyType;
            this.fIsReadOnly = fIsReadOnly;
            this.fList = fList;
            this.fIndex = fIndex;
        }