DocumentSystem.PDFDocument.SaveAllProperties C# (CSharp) Method

SaveAllProperties() public method

public SaveAllProperties ( object>.IList output ) : void
output object>.IList
return void
        public override void SaveAllProperties(IList<KeyValuePair<string, object>> output)
        {
            output.Add(new KeyValuePair<string, object>("pages", this.pages));
            base.SaveAllProperties(output);
        }
    }