Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Linq / Parallel / QueryOperators / ListQueryResults.cs / 1305376 / ListQueryResults.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // ListQueryResults.cs // //[....] // // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- using System.Collections.Generic; namespace System.Linq.Parallel { ////// Class to represent an IList{T} as QueryResults{T} /// ///internal class ListQueryResults : QueryResults { private IList m_source; private int m_partitionCount; private bool m_useStriping; internal ListQueryResults(IList source, int partitionCount, bool useStriping) { m_source = source; m_partitionCount = partitionCount; m_useStriping = useStriping; } internal override void GivePartitionedStream(IPartitionedStreamRecipient recipient) { PartitionedStream partitionedStream = GetPartitionedStream(); recipient.Receive (partitionedStream); } internal override bool IsIndexible { get { return true; } } internal override int ElementsCount { get { return m_source.Count; } } internal override T GetElement(int index) { return m_source[index]; } internal PartitionedStream GetPartitionedStream() { return ExchangeUtilities.PartitionDataSource(m_source, m_partitionCount, m_useStriping); } } } // 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
- WebBrowserNavigatingEventHandler.cs
- DesignRelation.cs
- ButtonBaseAdapter.cs
- GridSplitter.cs
- LicenseProviderAttribute.cs
- OutputCacheSettingsSection.cs
- ContractTypeNameElement.cs
- serverconfig.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- BindStream.cs
- EncoderBestFitFallback.cs
- ObjectResult.cs
- DesignerActionPanel.cs
- ConfigurationSettings.cs
- WebPermission.cs
- ContentOperations.cs
- Error.cs
- AutomationIdentifierGuids.cs
- cookiecollection.cs
- TextDecorations.cs
- MemoryPressure.cs
- HMACMD5.cs
- TableCell.cs
- Frame.cs
- MetricEntry.cs
- ShaderEffect.cs
- Attribute.cs
- SerializerProvider.cs
- FontDialog.cs
- UIAgentMonitorHandle.cs
- RestClientProxyHandler.cs
- RelationshipEnd.cs
- XhtmlConformanceSection.cs
- XmlDownloadManager.cs
- XslAst.cs
- GroupPartitionExpr.cs
- VerificationException.cs
- InstanceDataCollectionCollection.cs
- DocumentReference.cs
- GridViewCellAutomationPeer.cs
- FactoryGenerator.cs
- FigureParaClient.cs
- FormViewInsertedEventArgs.cs
- XmlDataImplementation.cs
- MetadataArtifactLoaderResource.cs
- VisualTarget.cs
- BlockUIContainer.cs
- StylusButtonEventArgs.cs
- ContainerActivationHelper.cs
- FilteredReadOnlyMetadataCollection.cs
- SafeMILHandleMemoryPressure.cs
- SspiHelper.cs
- CalendarItem.cs
- DecoderBestFitFallback.cs
- SqlSelectClauseBuilder.cs
- CustomPopupPlacement.cs
- ExtensionQuery.cs
- StateMachineHelpers.cs
- DeleteWorkflowOwnerCommand.cs
- MenuItemCollection.cs
- GACIdentityPermission.cs
- SiteMapPath.cs
- WindowsStreamSecurityUpgradeProvider.cs
- EarlyBoundInfo.cs
- MsmqIntegrationSecurity.cs
- TextEndOfSegment.cs
- StandardOleMarshalObject.cs
- ComponentDispatcher.cs
- ObjectView.cs
- DbParameterCollectionHelper.cs
- SerializableReadOnlyDictionary.cs
- ResizeGrip.cs
- SelectionPattern.cs
- XmlObjectSerializerReadContextComplex.cs
- MetafileHeaderWmf.cs
- MailWebEventProvider.cs
- EntityDataSourceStatementEditor.cs
- Listbox.cs
- TextDecorationCollectionConverter.cs
- HashHelper.cs
- CheckPair.cs
- SHA1.cs
- AutomationIdentifier.cs
- DbProviderServices.cs
- TraversalRequest.cs
- BypassElementCollection.cs
- TextServicesCompartment.cs
- DataGridParentRows.cs
- ToolboxControl.cs
- NotSupportedException.cs
- FaultHandlingFilter.cs
- WeakReferenceKey.cs
- EDesignUtil.cs
- ExpressionCopier.cs
- UrlRoutingHandler.cs
- DataControlPagerLinkButton.cs
- DataObjectEventArgs.cs
- CodeChecksumPragma.cs
- Exception.cs
- DocumentEventArgs.cs