C# Class System.Xml.Xsl.Runtime.XmlSortKeyAccumulator

Exibir arquivo Open project: dotnet/corefx

Public Methods

Method Description
AddDateTimeSortKey ( XmlCollation collation, System.DateTime value ) : void
AddDecimalSortKey ( XmlCollation collation, decimal value ) : void
AddDoubleSortKey ( XmlCollation collation, double value ) : void
AddEmptySortKey ( XmlCollation collation ) : void
AddIntSortKey ( XmlCollation collation, int value ) : void
AddIntegerSortKey ( XmlCollation collation, long value ) : void
AddStringSortKey ( XmlCollation collation, string value ) : void

Create a new sort key and append it to the current run of sort keys.

Create ( ) : void

Initialize the XmlSortKeyAccumulator.

FinishSortKeys ( ) : void

Finish creating the current run of sort keys and begin a new run.

Private Methods

Method Description
AppendSortKey ( XmlSortKey key ) : void

Append new sort key to the current run of sort keys.

Method Details

AddDateTimeSortKey() public method

public AddDateTimeSortKey ( XmlCollation collation, System.DateTime value ) : void
collation XmlCollation
value System.DateTime
return void

AddDecimalSortKey() public method

public AddDecimalSortKey ( XmlCollation collation, decimal value ) : void
collation XmlCollation
value decimal
return void

AddDoubleSortKey() public method

public AddDoubleSortKey ( XmlCollation collation, double value ) : void
collation XmlCollation
value double
return void

AddEmptySortKey() public method

public AddEmptySortKey ( XmlCollation collation ) : void
collation XmlCollation
return void

AddIntSortKey() public method

public AddIntSortKey ( XmlCollation collation, int value ) : void
collation XmlCollation
value int
return void

AddIntegerSortKey() public method

public AddIntegerSortKey ( XmlCollation collation, long value ) : void
collation XmlCollation
value long
return void

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

Create() public method

Initialize the XmlSortKeyAccumulator.
public Create ( ) : void
return void

FinishSortKeys() public method

Finish creating the current run of sort keys and begin a new run.
public FinishSortKeys ( ) : void
return void