DocumentSystem.Document.SaveAllProperties C# (CSharp) Method

SaveAllProperties() public method

public SaveAllProperties ( object>.IList output ) : void
output object>.IList
return void
        public virtual void SaveAllProperties(IList<KeyValuePair<string, object>> output)
        {
            output.Add(new KeyValuePair<string, object>("name", this.name));
            output.Add(new KeyValuePair<string, object>("content", this.content));
        }