System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.AddStringSortKey C# (CSharp) Method

AddStringSortKey() public method

Create a new sort key and append it to the current run of sort keys.
public AddStringSortKey ( XmlCollation collation, string value ) : void
collation XmlCollation
value string
return void
        public void AddStringSortKey(XmlCollation collation, string value)
        {
            AppendSortKey(collation.CreateSortKey(value));
        }