Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / Runtime / XmlSortKeyAccumulator.cs / 1305376 / XmlSortKeyAccumulator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Globalization; using System.ComponentModel; namespace System.Xml.Xsl.Runtime { ////// Accumulates a list of sort keys and stores them in an array. /// [EditorBrowsable(EditorBrowsableState.Never)] public struct XmlSortKeyAccumulator { private XmlSortKey[] keys; private int pos; #if DEBUG private const int DefaultSortKeyCount = 4; #else private const int DefaultSortKeyCount = 64; #endif ////// Initialize the XmlSortKeyAccumulator. /// public void Create() { if (this.keys == null) this.keys = new XmlSortKey[DefaultSortKeyCount]; this.pos = 0; this.keys[0] = null; } ////// Create a new sort key and append it to the current run of sort keys. /// public void AddStringSortKey(XmlCollation collation, string value) { AppendSortKey(collation.CreateSortKey(value)); } public void AddDecimalSortKey(XmlCollation collation, decimal value) { AppendSortKey(new XmlDecimalSortKey(value, collation)); } public void AddIntegerSortKey(XmlCollation collation, long value) { AppendSortKey(new XmlIntegerSortKey(value, collation)); } public void AddIntSortKey(XmlCollation collation, int value) { AppendSortKey(new XmlIntSortKey(value, collation)); } public void AddDoubleSortKey(XmlCollation collation, double value) { AppendSortKey(new XmlDoubleSortKey(value, collation)); } public void AddDateTimeSortKey(XmlCollation collation, DateTime value) { AppendSortKey(new XmlDateTimeSortKey(value, collation)); } public void AddEmptySortKey(XmlCollation collation) { AppendSortKey(new XmlEmptySortKey(collation)); } ////// Finish creating the current run of sort keys and begin a new run. /// public void FinishSortKeys() { this.pos++; if (this.pos >= this.keys.Length) { XmlSortKey[] keysNew = new XmlSortKey[this.pos * 2]; Array.Copy(this.keys, 0, keysNew, 0, this.keys.Length); this.keys = keysNew; } this.keys[this.pos] = null; } ////// Append new sort key to the current run of sort keys. /// private void AppendSortKey(XmlSortKey key) { // Ensure that sort will be stable by setting index of key key.Priority = this.pos; if (this.keys[this.pos] == null) this.keys[this.pos] = key; else this.keys[this.pos].AddSortKey(key); } ////// Get array of sort keys that was constructed by this internal class. /// public Array Keys { get { return this.keys; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PageOutputColor.cs
- DefaultValueAttribute.cs
- Rect.cs
- ChannelManager.cs
- Overlapped.cs
- CodeAttachEventStatement.cs
- TextFormatterImp.cs
- COM2ExtendedUITypeEditor.cs
- StrongNameIdentityPermission.cs
- ValueType.cs
- cookie.cs
- GridViewItemAutomationPeer.cs
- SafeLocalMemHandle.cs
- CfgSemanticTag.cs
- UIElementParaClient.cs
- ImageClickEventArgs.cs
- DecryptedHeader.cs
- RawStylusActions.cs
- HTMLTagNameToTypeMapper.cs
- SafeRegistryHandle.cs
- CaseCqlBlock.cs
- ShapingEngine.cs
- Soap.cs
- AudioLevelUpdatedEventArgs.cs
- ConfigPathUtility.cs
- RepeaterItemCollection.cs
- AttributeData.cs
- TabPanel.cs
- AccessViolationException.cs
- Tuple.cs
- Stack.cs
- DockPatternIdentifiers.cs
- Operators.cs
- JapaneseCalendar.cs
- DataSourceCacheDurationConverter.cs
- TemplateBindingExpression.cs
- ObjectViewFactory.cs
- DSASignatureFormatter.cs
- BitmapEffect.cs
- ItemList.cs
- ContentOperations.cs
- UrlMappingsSection.cs
- UInt32.cs
- SHA256Cng.cs
- SecurityCriticalDataForSet.cs
- FragmentQueryProcessor.cs
- UrlMappingCollection.cs
- TableItemPattern.cs
- ConstNode.cs
- TrackingProfileDeserializationException.cs
- Rules.cs
- FileVersionInfo.cs
- ObjectSet.cs
- HandlerBase.cs
- DataGridItem.cs
- ServiceSecurityContext.cs
- DelegatingMessage.cs
- ProcessHost.cs
- ColorPalette.cs
- SerializationBinder.cs
- parserscommon.cs
- EditingCommands.cs
- ExtensionDataObject.cs
- HwndMouseInputProvider.cs
- ResourceSetExpression.cs
- ObjectSpanRewriter.cs
- WindowsEditBox.cs
- StringComparer.cs
- EdmEntityTypeAttribute.cs
- EntityConnectionStringBuilder.cs
- ParseNumbers.cs
- PropertyIDSet.cs
- ForceCopyBuildProvider.cs
- ModelTreeEnumerator.cs
- DbProviderFactoriesConfigurationHandler.cs
- TextMessageEncoder.cs
- DefaultPropertyAttribute.cs
- Parser.cs
- PeerPresenceInfo.cs
- FormViewInsertedEventArgs.cs
- RequestCacheValidator.cs
- VectorAnimationBase.cs
- _DigestClient.cs
- SimpleWebHandlerParser.cs
- SubstitutionResponseElement.cs
- IndexExpression.cs
- AdapterUtil.cs
- XamlTreeBuilder.cs
- DataGridrowEditEndingEventArgs.cs
- BypassElement.cs
- ClipboardProcessor.cs
- XPathDocument.cs
- MailDefinition.cs
- SqlDataSourceConfigureSelectPanel.cs
- TaiwanLunisolarCalendar.cs
- SchemaEntity.cs
- BaseValidator.cs
- GeneralTransform2DTo3DTo2D.cs
- DecoderFallbackWithFailureFlag.cs
- ResourceAssociationSet.cs