Initial v0.1.1 documentation

This commit is contained in:
Michael Isard 2014-04-17 10:28:43 -07:00
parent 0552e9999c
commit dd9657b6f3
590 changed files with 37748 additions and 1 deletions

BIN
CloseSearch.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

BIN
CollapseAll.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 B

BIN
Collapsed.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 838 B

BIN
Expanded.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 B

156
FillNode.aspx Normal file
View File

@ -0,0 +1,156 @@
<%@ Page Language="C#" EnableViewState="False" %>
<script runat="server">
//===============================================================================================================
// System : Sandcastle Help File Builder
// File : FillNode.aspx
// Author : Eric Woodruff (Eric@EWoodruff.us)
// Updated : 07/17/2013
// Note : Copyright 2007-2013, Eric Woodruff, All rights reserved
// Compiler: Microsoft C#
//
// This file contains the code used to dynamically load a parent node with its child table of content nodes when
// first expanded.
//
// This code is published under the Microsoft Public License (Ms-PL). A copy of the license should be
// distributed with the code. It can also be found at the project website: http://SHFB.CodePlex.com. This
// notice, the author's name, and all copyright notices must remain intact in all applications, documentation,
// and source files.
//
// Version Date Who Comments
// ==============================================================================================================
// 1.5.0.0 06/21/2007 EFW Created the code
// 1.9.8.0 07/17/2013 EFW Merged code contributed by Procomp Solutions Oy that improves performance for large
// TOCs by using XML serialization and caching.
//===============================================================================================================
private static readonly TocNode[] NoChildNodes = new TocNode[0];
private static readonly object TocLoadSyncObject = new object();
// This is used to contain the serialized table of contents
[XmlRoot("HelpTOC")]
public sealed class TableOfContents
{
[XmlElement("HelpTOCNode")]
public TocNode[] ChildNodes;
[XmlIgnore]
public IDictionary<string, TocNode> NodesById;
internal void IndexNodes()
{
this.NodesById = new Dictionary<string, TocNode>();
AddToIndex(this.NodesById, this.ChildNodes);
}
private static void AddToIndex(IDictionary<string, TocNode> nodesById, TocNode[] nodes)
{
foreach(TocNode node in nodes)
if(!String.IsNullOrEmpty(node.Id))
{
nodesById.Add(node.Id, node);
AddToIndex(nodesById, node.ChildNodes);
}
}
}
// This represents a single node in the table of contents
public sealed class TocNode
{
[XmlAttribute("Id")]
public string Id;
[XmlAttribute("Title")]
public string Title;
[XmlAttribute("Url")]
public string Url;
[XmlElement("HelpTOCNode")]
public TocNode[] ChildNodes;
}
// Load the TOC info and store it in the cache on first use
private TableOfContents GetToc()
{
string tocPath = Server.MapPath("WebTOC.xml");
string tocCacheKey = tocPath;
lock(TocLoadSyncObject)
{
TableOfContents toc = this.Cache[tocCacheKey] as TableOfContents;
if(toc == null)
{
CacheDependency cacheDependency = new CacheDependency(tocPath);
using(XmlReader reader = XmlReader.Create(tocPath))
{
toc = (TableOfContents)new XmlSerializer(typeof(TableOfContents)).Deserialize(reader);
toc.IndexNodes();
}
this.Cache.Insert(tocCacheKey, toc, cacheDependency);
}
return toc;
}
}
// Load the requested node with its children
protected override void Render(HtmlTextWriter writer)
{
StringBuilder sb = new StringBuilder(10240);
TableOfContents toc = this.GetToc();
// The ID to use should be passed in the query string
string expandedId = this.Request.QueryString["Id"];
TocNode expandedNode;
if(toc.NodesById.TryGetValue(expandedId, out expandedNode))
{
foreach(TocNode childNode in expandedNode.ChildNodes ?? NoChildNodes)
{
if(childNode.ChildNodes != null && childNode.ChildNodes.Length != 0)
{
// Write out a parent TOC entry
string childUrl = childNode.Url;
string childTarget;
if(!String.IsNullOrEmpty(childUrl))
childTarget = " target=\"TopicContent\"";
else
{
childUrl = "#";
childTarget = String.Empty;
}
sb.AppendFormat("<div class=\"TreeNode\">\r\n" +
"<img class=\"TreeNodeImg\" onclick=\"javascript: Toggle(this);\" src=\"Collapsed.gif\"/>" +
"<a class=\"UnselectedNode\" onclick=\"javascript: return Expand(this);\" " +
"href=\"{0}\"{1}>{2}</a>\r\n" +
"<div id=\"{3}\" class=\"Hidden\"></div>\r\n" +
"</div>\r\n", childUrl, childTarget, HttpUtility.HtmlEncode(childNode.Title), childNode.Id);
}
else
{
string childUrl = childNode.Url;
if(String.IsNullOrEmpty(childUrl))
childUrl = "about:blank";
// Write out a TOC entry that has no children
sb.AppendFormat("<div class=\"TreeItem\">\r\n" +
"<img src=\"Item.gif\"/><a class=\"UnselectedNode\" " +
"onclick=\"javascript: return SelectNode(this);\" href=\"{0}\" " +
"target=\"TopicContent\">{1}</a>\r\n" +
"</div>\r\n", childUrl, HttpUtility.HtmlEncode(childNode.Title));
}
}
writer.Write(sb.ToString());
}
else
writer.Write("<b>TOC node not found!</b>");
}
</script>

52
FillNode.php Normal file
View File

@ -0,0 +1,52 @@
<?
// Contributed to the Sandcastle Help File Builder project by Thomas Levesque
header("Content-Type: text/html; charset=utf-8");
$toc = new DOMDocument();
$toc->load('WebTOC.xml');
$xpath = new DOMXPath($toc);
$id = $_GET["Id"];
$nodes = $xpath->query("//HelpTOCNode[@Id='$id']/*");
if ($nodes->length == 0)
{
?>
<b>TOC node not found!</b>
<?
die();
}
foreach($nodes as $node)
{
$id = $node->getAttribute("Id");
$url = $node->getAttribute("Url");
$title = $node->getAttribute("Title");
if (empty($url))
{
$url = "#";
$target = "";
}
else
{
$target = " target=\"TopicContent\"";
}
if ($node->hasChildNodes())
{
?>
<div class="TreeNode">
<img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/>
<a class="UnselectedNode" onclick="javascript: Expand(this);" href="<?= $url ?>"<?= $target ?>><?= $title ?></a>
<div id="<?= $id ?>" class="Hidden"></div>
</div>
<?
}
else
{
?>
<div class="TreeItem">
<img src="Item.gif"/>
<a class="UnselectedNode" onclick="javascript: SelectNode(this);" href="<?= $url ?>"<?= $target ?>><?= $title ?></a>
</div>
<?
}
}
?>

155
Index.aspx Normal file
View File

@ -0,0 +1,155 @@
<%@ Page Language="C#" EnableViewState="False" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head runat="server">
<title>DryadLINQ documentation - Table of Content</title>
<link rel="stylesheet" href="TOC.css" />
<link rel="shortcut icon" href="favicon.ico"/>
<script type="text/javascript" src="TOC.js"></script>
</head>
<body onload="javascript: Initialize('.aspx');" onresize="javascript: ResizeTree();">
<form id="IndexForm" runat="server">
<div id="TOCDiv" class="TOCDiv">
<div id="divSearchOpts" class="SearchOpts" style="height: 100px; display: none;">
<img class="TOCLink" onclick="javascript: ShowHideSearch(false);"
src="CloseSearch.png" height="17" width="17" alt="Hide search" style="float: right;"/>
Keyword(s) for which to search:
<input id="txtSearchText" type="text" style="width: 100%;"
onkeypress="javascript: return OnSearchTextKeyPress(event);" /><br />
<input id="chkSortByTitle" type="checkbox" /><label for="chkSortByTitle">&nbsp;Sort results by title</label><br />
<input type="button" value="Search" onclick="javascript: return PerformSearch();" />
</div>
<div id="divIndexOpts" class="IndexOpts" style="height: 25px; display: none;">
<img class="TOCLink" onclick="javascript: ShowHideIndex(false);"
src="CloseSearch.png" height="17" width="17" alt="Hide index" style="float: right;"/>
Keyword Index
</div>
<div id="divNavOpts" class="NavOpts" style="height: 20px;">
<img class="TOCLink" onclick="javascript: SyncTOC();" src="SyncTOC.gif"
height="16" width="16" alt="Sync to TOC"/>
<img class="TOCLink" onclick="javascript: ExpandOrCollapseAll(false);"
src="CollapseAll.png" height="16" width="16" alt="Collapse all" />
<img class="TOCLink" onclick="javascript: ShowHideIndex(true);"
src="Index.gif" height="16" width="16" alt="Index" />
<img class="TOCLink" onclick="javascript: ShowHideSearch(true);"
src="Search.gif" height="16" width="16" alt="Search" />
<a href="#" title="Click to obtain a direct link to the displayed topic"
style="margin-left: 10px; vertical-align: top;"
onclick="javascript: ShowDirectLink();">Direct Link</a>
</div>
<div class="Tree" id="divSearchResults" style="display: none;"
onselectstart="javascript: return false;">
</div>
<div class="Tree" id="divIndexResults" style="display: none;"
onselectstart="javascript: return false;">
</div>
<div class="Tree" id="divTree" onselectstart="javascript: return false;">
<asp:Literal ID="lcTOC" runat="server" />
</div>
</div>
<div id="TOCSizer" class="TOCSizer" onmousedown="OnMouseDown(event)" onselectstart="javascript: return false;"></div>
<iframe id="TopicContent" name="TopicContent" class="TopicContent" src="html/e203b95e-0737-40f6-9c16-fc84484a5bad.htm">
This page uses an IFRAME but your browser does not support it.
</iframe>
</form>
</body>
</html>
<script runat="server">
//=============================================================================
// System : Sandcastle Help File Builder
// File : Index.aspx
// Author : Eric Woodruff (Eric@EWoodruff.us)
// Updated : 02/18/2012
// Note : Copyright 2007-2012, Eric Woodruff, All rights reserved
// Compiler: Microsoft C#
//
// This file contains the code used to display the index page for a website
// produced by the help file builder. The root nodes are loaded for the table
// of content. Child nodes are loaded dynamically when first expanded using
// an Ajax call.
//
// This code is published under the Microsoft Public License (Ms-PL). A copy
// of the license should be distributed with the code. It can also be found
// at the project website: http://SHFB.CodePlex.com. This notice, the
// author's name, and all copyright notices must remain intact in all
// applications, documentation, and source files.
//
// Version Date Who Comments
// ============================================================================
// 1.5.0.0 06/21/2007 EFW Created the code
// 1.9.4.0 02/18/2012 EFW Merged code from tom103 to show direct link
//=============================================================================
protected void Page_Load(object sender, EventArgs e)
{
StringBuilder sb = new StringBuilder(10240);
string id, url, target, title;
XPathDocument toc = new XPathDocument(Server.MapPath("WebTOC.xml"));
XPathNavigator navToc = toc.CreateNavigator();
XPathNodeIterator root = navToc.Select("HelpTOC/*");
foreach(XPathNavigator node in root)
{
if(node.HasChildren)
{
// Write out a parent TOC entry
id = node.GetAttribute("Id", String.Empty);
title = node.GetAttribute("Title", String.Empty);
url = node.GetAttribute("Url", String.Empty);
if(!String.IsNullOrEmpty(url))
target = " target=\"TopicContent\"";
else
{
url = "#";
target = String.Empty;
}
sb.AppendFormat("<div class=\"TreeNode\">\r\n" +
"<img class=\"TreeNodeImg\" " +
"onclick=\"javascript: Toggle(this);\" " +
"src=\"Collapsed.gif\"/><a class=\"UnselectedNode\" " +
"onclick=\"javascript: return Expand(this);\" " +
"href=\"{0}\"{1}>{2}</a>\r\n" +
"<div id=\"{3}\" class=\"Hidden\"></div>\r\n</div>\r\n",
url, target, HttpUtility.HtmlEncode(title), id);
}
else
{
title = node.GetAttribute("Title", String.Empty);
url = node.GetAttribute("Url", String.Empty);
if(String.IsNullOrEmpty(url))
url = "about:blank";
// Write out a TOC entry that has no children
sb.AppendFormat("<div class=\"TreeItem\">\r\n" +
"<img src=\"Item.gif\"/>" +
"<a class=\"UnselectedNode\" " +
"onclick=\"javascript: return SelectNode(this);\" " +
"href=\"{0}\" target=\"TopicContent\">{1}</a>\r\n" +
"</div>\r\n", url, HttpUtility.HtmlEncode(title));
}
}
lcTOC.Text = sb.ToString();
}
</script>

BIN
Index.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 902 B

BIN
Item.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 820 B

352
LastBuild.log Normal file
View File

@ -0,0 +1,352 @@
<?xml version="1.0" encoding="utf-8"?>
<shfbBuild product="Sandcastle Help File Builder" version="2014.2.15.0 Beta" projectFile="D:\Users\misard\src\dryad\XmlDoc\XmlDoc.shfbproj" started="4/17/2014 10:17:22 AM">
<buildStep step="Initializing">
Finding tools...
The Sandcastle tools are located in &#39;C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\&#39;
Locating components...
Using presentation style &#39;VS2010&#39; located in &#39;C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010&#39;
</buildStep>
<buildStep step="ValidatingDocumentationSources">
Validating and copying documentation source information
Source: D:\Users\misard\src\dryad\bin\release\Microsoft.Research.DryadLinq.XML
Source: D:\Users\misard\src\dryad\bin\release\Microsoft.Research.DryadLinq.dll
Found assembly &#39;D:\Users\misard\src\dryad\bin\release\Microsoft.Research.DryadLinq.dll&#39;
References to include (excluding framework assemblies):
None
Copying XML comments files
D:\Users\misard\src\dryad\bin\release\Microsoft.Research.DryadLinq.XML -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Microsoft.Research.DryadLinq.XML
</buildStep>
<buildStep step="GenerateSharedContent">
Generating shared content files (en-US, English (United States))...
Last step completed in 00:00:00.0000
</buildStep>
<buildStep step="GenerateApiFilter">
Generating API filter for MRefBuilder...
Last step completed in 00:00:00.0156
</buildStep>
<buildStep step="GenerateReflectionInfo">
Generating reflection information...
[C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe]
Build started 4/17/2014 10:17:23 AM.
Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\GenerateRefInfo.proj&quot; on node 1 (default targets).
PrepareForBuild:
Creating directory &quot;obj\Debug\&quot;.
GenerateRefInfo:
MRefBuilder (v2014.1.26.0)
Copyright c 2006-2014, Microsoft Corporation, All Rights Reserved.
Portions Copyright c 2006-2014, Eric Woodruff, All Rights Reserved.
Loaded 1 assemblies for reflection and 1 dependency assemblies.
Wrote information on 1 namespaces, 35 types, and 335 members
Copying file from &quot;reflection.org&quot; to &quot;reflection.all&quot;.
XslTransform (v2014.1.26.0)
Copyright c 2006-2014, Microsoft Corporation, All Rights Reserved.
Portions Copyright c 2006-2014, Eric Woodruff, All Rights Reserved.
Applying XSL transformation &#39;C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\ProductionTransforms\MergeDuplicates.xsl&#39;.
Done Building Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\GenerateRefInfo.proj&quot; (default targets).
Build succeeded.
Time Elapsed 00:00:00.67
Last step completed in 00:00:00.7500
</buildStep>
<buildStep step="TransformReflectionInfo">
Transforming reflection output...
[C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe]
Build started 4/17/2014 10:17:24 AM.
Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\TransformManifest.proj&quot; on node 1 (default targets).
TransformManifest:
XslTransform (v2014.1.26.0)
Copyright c 2006-2014, Microsoft Corporation, All Rights Reserved.
Portions Copyright c 2006-2014, Eric Woodruff, All Rights Reserved.
Applying XSL transformation &#39;C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\ProductionTransforms\ApplyVSDocModel.xsl&#39;.
Copying file from &quot;reflection.xml&quot; to &quot;reflection.nofilenames&quot;.
XslTransform (v2014.1.26.0)
Copyright c 2006-2014, Microsoft Corporation, All Rights Reserved.
Portions Copyright c 2006-2014, Eric Woodruff, All Rights Reserved.
Applying XSL transformation &#39;C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\ProductionTransforms\AddFilenames.xsl&#39;.
XslTransform (v2014.1.26.0)
Copyright c 2006-2014, Microsoft Corporation, All Rights Reserved.
Portions Copyright c 2006-2014, Eric Woodruff, All Rights Reserved.
Applying XSL transformation &#39;C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\ProductionTransforms\ReflectionToManifest.xsl&#39;.
Done Building Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\TransformManifest.proj&quot; (default targets).
Build succeeded.
Time Elapsed 00:00:00.54
Last step completed in 00:00:00.6339
</buildStep>
<buildStep step="GenerateNamespaceSummaries">
Generating namespace summary information...
Last step completed in 00:00:00.1250
</buildStep>
<buildStep step="CopyConceptualContent">
Copying conceptual content...
Copying standard token shared content file...
Checking for other token files...
Checking for code snippets files...
Copying images and creating the media map file...
Generating conceptual topic files
Parsing topic file &#39;D:\Users\misard\src\dryad\XmlDoc\Content\Welcome.aml&#39;
D:\Users\misard\src\dryad\XmlDoc\Content\Welcome.aml -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\ddueXml\e203b95e-0737-40f6-9c16-fc84484a5bad.xml
Parsing topic file &#39;D:\Users\misard\src\dryad\XmlDoc\Content\GettingStarted.aml&#39;
D:\Users\misard\src\dryad\XmlDoc\Content\GettingStarted.aml -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\ddueXml\4a617e67-0920-46e4-9223-5effbac46b3d.xml
Parsing topic file &#39;D:\Users\misard\src\dryad\XmlDoc\Content\GettingStarted\QuickStart.aml&#39;
D:\Users\misard\src\dryad\XmlDoc\Content\GettingStarted\QuickStart.aml -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\ddueXml\e992fd94-c956-481d-82e6-dbdf45daa722.xml
Parsing topic file &#39;D:\Users\misard\src\dryad\XmlDoc\Content\GettingStarted\SettingUpCluster.aml&#39;
D:\Users\misard\src\dryad\XmlDoc\Content\GettingStarted\SettingUpCluster.aml -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\ddueXml\4aefe670-7b2b-4c05-9a65-6c60ff13c3b5.xml
Parsing topic file &#39;D:\Users\misard\src\dryad\XmlDoc\Content\GettingStarted\Building the Job Browser.aml&#39;
D:\Users\misard\src\dryad\XmlDoc\Content\GettingStarted\Building the Job Browser.aml -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\ddueXml\91822db3-8a00-4307-ad8a-595c94f449b0.xml
Parsing topic file &#39;D:\Users\misard\src\dryad\XmlDoc\Content\Resources.aml&#39;
D:\Users\misard\src\dryad\XmlDoc\Content\Resources.aml -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\ddueXml\1ef96122-dbe3-4815-a81f-7b5a72bf9f4f.xml
Parsing topic file &#39;D:\Users\misard\src\dryad\XmlDoc\Content\Resources\Running a job on HDInsight.aml&#39;
D:\Users\misard\src\dryad\XmlDoc\Content\Resources\Running a job on HDInsight.aml -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\ddueXml\3596a79f-0714-43b0-b49a-ea9eeccb7326.xml
Parsing topic file &#39;D:\Users\misard\src\dryad\XmlDoc\Content\VersionHistory\VersionHistory.aml&#39;
D:\Users\misard\src\dryad\XmlDoc\Content\VersionHistory\VersionHistory.aml -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\ddueXml\a5d9b686-8282-4120-ae0e-5a9f11a2ac0b.xml
Parsing topic file &#39;D:\Users\misard\src\dryad\XmlDoc\Content\VersionHistory\v0.1.1.aml&#39;
D:\Users\misard\src\dryad\XmlDoc\Content\VersionHistory\v0.1.1.aml -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\ddueXml\a2eaaf5d-f1d8-4319-844e-a458cc72e4db.xml
Last step completed in 00:00:00.0781
</buildStep>
<buildStep step="CreateConceptualTopicConfigs">
Creating conceptual topic configuration files...
Companion files
_ContentMetadata_.xml
ConceptualManifest.xml
Last step completed in 00:00:00.0156
</buildStep>
<buildStep step="CopyAdditionalContent">
Copying additional content files...
No additional content to copy
Last step completed in 00:00:00.0000
</buildStep>
<buildStep step="MergeTablesOfContents">
Merging conceptual and additional tables of contents...
Last step completed in 00:00:00.0000
</buildStep>
<buildStep step="GenerateIntermediateTableOfContents">
Generating intermediate table of contents file...
[C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe]
Build started 4/17/2014 10:17:24 AM.
Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\GenerateIntermediateTOC.proj&quot; on node 1 (default targets).
GenerateIntermediateTOC:
XslTransform (v2014.1.26.0)
Copyright c 2006-2014, Microsoft Corporation, All Rights Reserved.
Portions Copyright c 2006-2014, Eric Woodruff, All Rights Reserved.
Applying XSL transformation &#39;C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\ProductionTransforms\CreateVSToc.xsl&#39;.
Done Building Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\GenerateIntermediateTOC.proj&quot; (default targets).
Build succeeded.
Time Elapsed 00:00:00.10
Generating conceptual content intermediate TOC file...
Last step completed in 00:00:00.1875
</buildStep>
<buildStep step="CreateBuildAssemblerConfigs">
Creating Sandcastle configuration files...
sandcastle.config
conceptual.config
Last step completed in 00:00:00.2552
</buildStep>
<buildStep step="MergeCustomConfigs">
Merging custom build component configurations
D:\Users\misard\src\dryad\XmlDoc\Help\Working\sandcastle.config
D:\Users\misard\src\dryad\XmlDoc\Help\Working\conceptual.config
Removing unused ExampleComponent.
Last step completed in 00:00:00.1875
</buildStep>
<buildStep step="BuildConceptualTopics">
Building conceptual help topics...
[C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe]
Build started 4/17/2014 10:17:25 AM.
Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\BuildConceptualTopics.proj&quot; on node 1 (default targets).
BuildConceptualTopics:
BuildAssembler (v2014.1.26.0)
Copyright c 2006-2014, Microsoft Corporation, All Rights Reserved.
Portions Copyright c 2006-2014, Eric Woodruff, All Rights Reserved.
Loading configuration...
Processing topics...
Processed 9 topic(s)
CopyFromIndexComponent: &quot;metadata&quot; in-memory cache entries used: 1 of 15.
Done Building Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\BuildConceptualTopics.proj&quot; (default targets).
Build succeeded.
Time Elapsed 00:00:04.25
Last step completed in 00:00:04.4656
</buildStep>
<buildStep step="BuildReferenceTopics">
Building reference help topics...
[C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe]
Build started 4/17/2014 10:17:30 AM.
Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\BuildReferenceTopics.proj&quot; on node 1 (default targets).
BuildReferenceTopics:
BuildAssembler (v2014.1.26.0)
Copyright c 2006-2014, Microsoft Corporation, All Rights Reserved.
Portions Copyright c 2006-2014, Eric Woodruff, All Rights Reserved.
Loading configuration...
Processing topics...
BuildAssembler : warning : ResolveReferenceLinksComponent: [M:Microsoft.Research.DryadLinq.DryadLinqCluster.Client(Microsoft.Research.DryadLinq.DryadLinqContext)] Unknown reference link target &#39;T:Microsoft.Research.Peloponnese.ClusterUtils.ClusterClient&#39;. [D:\Users\misard\src\dryad\XmlDoc\Help\Working\BuildReferenceTopics.proj]
BuildAssembler : warning : ResolveReferenceLinksComponent: [P:Microsoft.Research.DryadLinq.DryadLinqCluster.DfsClient] Unknown reference link target &#39;T:Microsoft.Research.Peloponnese.Storage.IDfsClient&#39;. [D:\Users\misard\src\dryad\XmlDoc\Help\Working\BuildReferenceTopics.proj]
Processed 453 topic(s)
2 warning(s)
CopyFromIndexComponent: &quot;reflection&quot; in-memory cache entries used: 11 of 15.
CopyFromIndexComponent: &quot;comments&quot; in-memory cache entries used: 3 of 30.
Done Building Project &quot;D:\Users\misard\src\dryad\XmlDoc\Help\Working\BuildReferenceTopics.proj&quot; (default targets).
Build succeeded.
Time Elapsed 00:00:20.55
Last step completed in 00:00:20.6414
</buildStep>
<buildStep step="CombiningIntermediateTocFiles">
Combining conceptual and API intermediate TOC files...
Clearing any prior web output
Last step completed in 00:00:00.2762
</buildStep>
<buildStep step="ExtractingHtmlInfo">
Extracting HTML info for HTML Help 1 and/or website...
[C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe]
Sandcastle Help File Builder, version 2014.2.15.0 Beta
Copyright c 2006-2014, Eric Woodruff, All Rights Reserved
E-Mail: Eric@EWoodruff.us
Using LCID &#39;1033&#39;, code page &#39;65001&#39;, encoding charset &#39;UTF-8&#39;.
Processing website files in D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website
Processed 462 HTML files
Sorting keywords and generating See Also indices
Saving website keyword index to D:\Users\misard\src\dryad\XmlDoc\Help\Working\WebKI.xml
Saving website table of contents to D:\Users\misard\src\dryad\XmlDoc\Help\Working\WebTOC.xml
Last step completed in 00:00:02.1078
</buildStep>
<buildStep step="CopyStandardHelpContent">
Copying standard help content...
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\1_404_bullet.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\1_404_bullet.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\2_404_bullet.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\2_404_bullet.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\alert_caution.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\alert_caution.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\alert_note.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\alert_note.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\alert_security.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\alert_security.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\CFW.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\CFW.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\close.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\close.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\favicon.ico -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\favicon.ico
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\footer_slice.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\footer_slice.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\info_icon.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\info_icon.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\note.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\note.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\online_icon.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\online_icon.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\open.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\open.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pencil.GIF -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pencil.GIF
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privclass.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privclass.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privdelegate.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privdelegate.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privenumeration.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privenumeration.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privevent.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privevent.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privextension.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privextension.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privfield.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privfield.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privinterface.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privinterface.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privmethod.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privmethod.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privproperty.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privproperty.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\privstructure.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\privstructure.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protclass.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protclass.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protdelegate.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protdelegate.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protenumeration.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protenumeration.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protevent.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protevent.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protextension.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protextension.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protfield.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protfield.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protinterface.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protinterface.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protmethod.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protmethod.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protoperator.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protoperator.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protproperty.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protproperty.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\protstructure.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\protstructure.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubclass.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubclass.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubdelegate.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubdelegate.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubenumeration.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubenumeration.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubevent.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubevent.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubextension.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubextension.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubfield.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubfield.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubinterface.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubinterface.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubmethod.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubmethod.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\puboperator.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\puboperator.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubproperty.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubproperty.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\pubstructure.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\pubstructure.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\search.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\search.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\search_bk.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\search_bk.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\security.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\security.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\slMobile.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\slMobile.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\static.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\static.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\tabLeftBG.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\tabLeftBG.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\tabRightBG.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\tabRightBG.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\ui_om_collapse.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\ui_om_collapse.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\ui_om_expand.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\ui_om_expand.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\icons\xna.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\icons\xna.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\scripts\branding.js -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\scripts\branding.js
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-cs-CZ.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-cs-CZ.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-de-DE.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-de-DE.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-en-US.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-en-US.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-es-ES.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-es-ES.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-fr-FR.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-fr-FR.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-it-IT.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-it-IT.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-ja-JP.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-ja-JP.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-ko-KR.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-ko-KR.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-pl-PL.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-pl-PL.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-pt-BR.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-pt-BR.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-ru-RU.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-ru-RU.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-tr-TR.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-tr-TR.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-zh-CN.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-zh-CN.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding-zh-TW.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding-zh-TW.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\PresentationStyles\VS2010\styles\branding.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\styles\branding.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\CloseSearch.png -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\CloseSearch.png
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\CollapseAll.png -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\CollapseAll.png
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\Collapsed.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\Collapsed.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\Expanded.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\Expanded.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\favicon.ico -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\favicon.ico
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\FillNode.aspx -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\FillNode.aspx
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\FillNode.php -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\FillNode.php
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\Index.aspx -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\Index.aspx
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\Index.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\Index.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\index.html -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\index.html
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\index.php -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\index.php
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\Item.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\Item.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\LoadIndexKeywords.aspx -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\LoadIndexKeywords.aspx
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\LoadIndexKeywords.php -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\LoadIndexKeywords.php
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\Search.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\Search.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\SearchHelp.aspx -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\SearchHelp.aspx
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\SearchHelp.inc.php -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\SearchHelp.inc.php
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\SearchHelp.php -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\SearchHelp.php
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\Splitter.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\Splitter.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\SyncTOC.gif -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\SyncTOC.gif
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\TOC.css -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\TOC.css
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\TOC.js -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\TOC.js
C:\Program Files (x86)\EWSoftware\Sandcastle Help File Builder\\Web\Web.Config -&gt; D:\Users\misard\src\dryad\XmlDoc\Help\Working\Output\Website\.\Web.Config
Last step completed in 00:00:00.4583
</buildStep>
<buildStep step="GenerateHelpFormatTableOfContents">
Generating website table of contents file...
Last step completed in 00:00:00.0000
</buildStep>
<buildStep step="GenerateFullTextIndex">
Generating full-text index for the website...
Last step completed in 00:00:01.5836
</buildStep>
<buildStep step="CopyingWebsiteFiles">
Copying website files to output folder...
Copied 100 files
Copied 200 files
Copied 300 files
Copied 400 files
Copied 500 files
Copied 587 files for the website content
Last step completed in 00:00:00.7045
</buildStep>
<buildStep step="CleanIntermediates">
Removing intermediate files...
Last step completed in 00:00:00.3293
</buildStep>
<buildStep step="Completed">
Build completed successfully at 04/17/2014 10:17 AM. Total time: 00:00:33.3046
</buildStep>
</shfbBuild>

102
LoadIndexKeywords.aspx Normal file
View File

@ -0,0 +1,102 @@
<%@ Page Language="C#" EnableViewState="False" %>
<script runat="server">
//=============================================================================
// System : Sandcastle Help File Builder
// File : LoadIndexKeywords.aspx
// Author : Eric Woodruff (Eric@EWoodruff.us) from code by Ferdinand Prantl
// Updated : 04/01/2008
// Note : Copyright 2008, Eric Woodruff, All rights reserved
// Compiler: Microsoft C#
//
// This file contains the code used to search for keywords within the help
// topics using the full-text index files created by the help file builder.
//
// This code is published under the Microsoft Public License (Ms-PL). A copy
// of the license should be distributed with the code. It can also be found
// at the project website: http://SHFB.CodePlex.com. This notice, the
// author's name, and all copyright notices must remain intact in all
// applications, documentation, and source files.
//
// Version Date Who Comments
// ============================================================================
// 1.6.0.7 04/01/2008 EFW Created the code
//=============================================================================
/// <summary>
/// Render the keyword index
/// </summary>
/// <param name="writer">The writer to which the results are written</param>
protected override void Render(HtmlTextWriter writer)
{
XmlDocument ki;
XmlNode root, node;
StringBuilder sb = new StringBuilder(10240);
int startIndex = 0, endIndex;
string url, target;
ki = new XmlDocument();
ki.Load(Server.MapPath("WebKI.xml"));
root = ki.SelectSingleNode("HelpKI");
if(Request.QueryString["StartIndex"] != null)
startIndex = Convert.ToInt32(Request.QueryString["StartIndex"]) * 128;
endIndex = startIndex + 128;
if(endIndex > root.ChildNodes.Count)
endIndex = root.ChildNodes.Count;
if(startIndex > 0)
{
sb.Append("<div class=\"IndexItem\">\r\n" +
"<span>&nbsp;</span><a class=\"UnselectedNode\" " +
"onclick=\"javascript: return ChangeIndexPage(-1);\" " +
"href=\"#\"><b><< Previous page</b></a>\r\n</div>\r\n");
}
while(startIndex < endIndex)
{
node = root.ChildNodes[startIndex];
if(node.Attributes["Url"] == null)
{
url = "#";
target = String.Empty;
}
else
{
url = node.Attributes["Url"].Value;
target = " target=\"TopicContent\"";
}
sb.AppendFormat("<div class=\"IndexItem\">\r\n" +
"<span>&nbsp;</span><a class=\"UnselectedNode\" " +
"onclick=\"javascript: return SelectIndexNode(this);\" " +
"href=\"{0}\"{1}>{2}</a>\r\n", url, target,
HttpUtility.HtmlEncode(node.Attributes["Title"].Value));
if(node.ChildNodes.Count != 0)
foreach(XmlNode subNode in node.ChildNodes)
sb.AppendFormat("<div class=\"IndexSubItem\">\r\n" +
"<img src=\"Item.gif\"/><a class=\"UnselectedNode\" " +
"onclick=\"javascript: return SelectIndexNode(this);\" " +
"href=\"{0}\" target=\"TopicContent\">{1}</a>\r\n</div>\r\n",
subNode.Attributes["Url"].Value,
HttpUtility.HtmlEncode(subNode.Attributes["Title"].Value));
sb.Append("</div>\r\n");
startIndex++;
}
if(startIndex < root.ChildNodes.Count)
sb.Append("<div class=\"IndexItem\">\r\n" +
"<span>&nbsp;</span><a class=\"UnselectedNode\" " +
"onclick=\"javascript: return ChangeIndexPage(1);\" " +
"href=\"#\"><b>Next page >></b></a>\r\n</div>\r\n");
writer.Write(sb.ToString());
}
</script>

68
LoadIndexKeywords.php Normal file
View File

@ -0,0 +1,68 @@
<?
// Contributed to the Sandcastle Help File Builder project by Thomas Levesque
$ki = new DOMDocument();
$ki->load("WebKI.xml");
$xpath = new DOMXPath($ki);
$nodes = $xpath->query("/HelpKI/*");
$startIndexParam = $_GET["StartIndex"];
$startIndex = 0;
if (!empty($startIndexParam))
$startIndex = intval($startIndexParam) * 128;
$endIndex = $startIndex + 128;
if ($endIndex > $nodes->length)
$endIndex = $nodes->length;
if($startIndex > 0)
{
?>
<div class="IndexItem">
<span>&nbsp;</span><a class="UnselectedNode" onclick="javascript: return ChangeIndexPage(-1);" href="#"><b><< Previous page</b></a>
</div>
<?
}
while($startIndex < $endIndex)
{
$node = $nodes->item($startIndex);
$url = $node->getAttribute("Url");
$title = $node->getAttribute("Title");
$target = " target=\"TopicContent\"";
if (empty($url))
{
$url = "#";
$target = "";
}
?>
<div class="IndexItem">
<span>&nbsp;</span><a class="UnselectedNode" onclick="javascript: return SelectIndexNode(this);" href="<?= $url ?>"<?= $target ?>><?= $title ?></a>
<?
$subNodes = $xpath->query("./HelpKINode", $node);
foreach($subNodes as $subNode)
{
$subUrl = $subNode->getAttribute("Url");
$subTitle = $subNode->getAttribute("Title");
?>
<div class="IndexSubItem">
<img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectIndexNode(this);" href="<?= $subUrl ?>" target="TopicContent"><?= $subTitle ?></a>
</div>
<?
}
?>
</div>
<?
$startIndex++;
}
if($startIndex < $nodes->length)
{
?>
<div class="IndexItem">
<span>&nbsp;</span><a class="UnselectedNode" onclick="javascript: return ChangeIndexPage(1);" href="#"><b>Next page >></b></a>
</div>
<?
}
?>

BIN
Search.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 974 B

236
SearchHelp.aspx Normal file
View File

@ -0,0 +1,236 @@
<%@ Page Language="C#" EnableViewState="False" %>
<script runat="server">
//=============================================================================
// System : Sandcastle Help File Builder
// File : SearchHelp.aspx
// Author : Eric Woodruff (Eric@EWoodruff.us)
// Updated : 04/27/2012
// Note : Copyright 2007-2012, Eric Woodruff, All rights reserved
// Compiler: Microsoft C#
//
// This file contains the code used to search for keywords within the help
// topics using the full-text index files created by the help file builder.
//
// This code is published under the Microsoft Public License (Ms-PL). A copy
// of the license should be distributed with the code. It can also be found
// at the project website: http://SHFB.CodePlex.com. This notice, the
// author's name, and all copyright notices must remain intact in all
// applications, documentation, and source files.
//
// Version Date Who Comments
// ============================================================================
// 1.5.0.0 06/24/2007 EFW Created the code
// 1.9.4.0 02/17/2012 EFW Switched to JSON serialization to support websites
// that use something other than ASP.NET such as PHP.
//=============================================================================
private class Ranking
{
public string Filename, PageTitle;
public int Rank;
public Ranking(string file, string title, int rank)
{
Filename = file;
PageTitle = title;
Rank = rank;
}
}
/// <summary>
/// Render the search results
/// </summary>
/// <param name="writer">The writer to which the results are written</param>
protected override void Render(HtmlTextWriter writer)
{
JavaScriptSerializer jss = new JavaScriptSerializer();
string searchText, ftiFile;
char letter;
bool sortByTitle = false;
jss.MaxJsonLength = Int32.MaxValue;
// The keywords for which to search should be passed in the query string
searchText = this.Request.QueryString["Keywords"];
if(String.IsNullOrEmpty(searchText))
{
writer.Write("<b class=\"PaddedText\">Nothing found</b>");
return;
}
// An optional SortByTitle option can also be specified
if(this.Request.QueryString["SortByTitle"] != null)
sortByTitle = Convert.ToBoolean(this.Request.QueryString["SortByTitle"]);
List<string> keywords = this.ParseKeywords(searchText);
List<char> letters = new List<char>();
List<string> fileList;
Dictionary<string, List<long>> ftiWords, wordDictionary =
new Dictionary<string,List<long>>();
// Load the file index
using(StreamReader sr = new StreamReader(Server.MapPath("fti/FTI_Files.json")))
{
fileList = jss.Deserialize<List<string>>(sr.ReadToEnd());
}
// Load the required word index files
foreach(string word in keywords)
{
letter = word[0];
if(!letters.Contains(letter))
{
letters.Add(letter);
ftiFile = Server.MapPath(String.Format(CultureInfo.InvariantCulture,
"fti/FTI_{0}.json", (int)letter));
if(File.Exists(ftiFile))
{
using(StreamReader sr = new StreamReader(ftiFile))
{
ftiWords = jss.Deserialize<Dictionary<string, List<long>>>(sr.ReadToEnd());
}
foreach(string ftiWord in ftiWords.Keys)
wordDictionary.Add(ftiWord, ftiWords[ftiWord]);
}
}
}
// Perform the search and return the results as a block of HTML
writer.Write(this.Search(keywords, fileList, wordDictionary, sortByTitle));
}
/// <summary>
/// Split the search text up into keywords
/// </summary>
/// <param name="keywords">The keywords to parse</param>
/// <returns>A list containing the words for which to search</returns>
private List<string> ParseKeywords(string keywords)
{
List<string> keywordList = new List<string>();
string checkWord;
string[] words = Regex.Split(keywords, @"\W+");
foreach(string word in words)
{
checkWord = word.ToLower(CultureInfo.InvariantCulture);
if(checkWord.Length > 2 && !Char.IsDigit(checkWord[0]) &&
!keywordList.Contains(checkWord))
keywordList.Add(checkWord);
}
return keywordList;
}
/// <summary>
/// Search for the specified keywords and return the results as a block of
/// HTML.
/// </summary>
/// <param name="keywords">The keywords for which to search</param>
/// <param name="fileInfo">The file list</param>
/// <param name="wordDictionary">The dictionary used to find the words</param>
/// <param name="sortByTitle">True to sort by title, false to sort by
/// ranking</param>
/// <returns>A block of HTML representing the search results.</returns>
private string Search(List<string> keywords, List<string> fileInfo,
Dictionary<string, List<long>> wordDictionary, bool sortByTitle)
{
StringBuilder sb = new StringBuilder(10240);
Dictionary<string, List<long>> matches = new Dictionary<string, List<long>>();
List<long> occurrences;
List<int> matchingFileIndices = new List<int>(),
occurrenceIndices = new List<int>();
List<Ranking> rankings = new List<Ranking>();
string filename, title;
string[] fileIndex;
bool isFirst = true;
int idx, wordCount, matchCount;
// TODO: Support boolean operators (AND, OR and maybe NOT)
foreach(string word in keywords)
{
if(!wordDictionary.TryGetValue(word, out occurrences))
return "<b class=\"PaddedText\">Nothing found</b>";
matches.Add(word, occurrences);
occurrenceIndices.Clear();
// Get a list of the file indices for this match
foreach(long entry in occurrences)
occurrenceIndices.Add((int)(entry >> 16));
if(isFirst)
{
isFirst = false;
matchingFileIndices.AddRange(occurrenceIndices);
}
else
{
// After the first match, remove files that do not appear for
// all found keywords.
for(idx = 0; idx < matchingFileIndices.Count; idx++)
if(!occurrenceIndices.Contains(matchingFileIndices[idx]))
{
matchingFileIndices.RemoveAt(idx);
idx--;
}
}
}
if(matchingFileIndices.Count == 0)
return "<b class=\"PaddedText\">Nothing found</b>";
// Rank the files based on the number of times the words occurs
foreach(int index in matchingFileIndices)
{
// Split out the title, filename, and word count
fileIndex = fileInfo[index].Split('\x0');
title = fileIndex[0];
filename = fileIndex[1];
wordCount = Convert.ToInt32(fileIndex[2]);
matchCount = 0;
foreach(string word in keywords)
{
occurrences = matches[word];
foreach(long entry in occurrences)
if((int)(entry >> 16) == index)
matchCount += (int)(entry & 0xFFFF);
}
rankings.Add(new Ranking(filename, title, matchCount * 1000 / wordCount));
}
// Sort by rank in descending order or by page title in ascending order
rankings.Sort(delegate (Ranking x, Ranking y)
{
if(!sortByTitle)
return y.Rank - x.Rank;
return x.PageTitle.CompareTo(y.PageTitle);
});
// Format the file list and return the results
foreach(Ranking r in rankings)
sb.AppendFormat("<div class=\"TreeItem\">\r\n<img src=\"Item.gif\"/>" +
"<a class=\"UnselectedNode\" target=\"TopicContent\" " +
"href=\"{0}\" onclick=\"javascript: SelectSearchNode(this);\">" +
"{1}</a>\r\n</div>\r\n", r.Filename, r.PageTitle);
// Return the keywords used as well in a hidden span
sb.AppendFormat("<span id=\"SearchKeywords\" style=\"display: none\">{0}</span>",
String.Join(" ", keywords.ToArray()));
return sb.ToString();
}
</script>

169
SearchHelp.inc.php Normal file
View File

@ -0,0 +1,169 @@
<?
// Contributed to the Sandcastle Help File Builder project by Thomas Levesque
class Ranking
{
public $filename;
public $pageTitle;
public $rank;
function __construct($file, $title, $rank)
{
$this->filename = $file;
$this->pageTitle = $title;
$this->rank = $rank;
}
}
/// <summary>
/// Split the search text up into keywords
/// </summary>
/// <param name="keywords">The keywords to parse</param>
/// <returns>A list containing the words for which to search</returns>
function ParseKeywords($keywords)
{
$keywordList = array();
$words = preg_split("/[^\w]+/", $keywords);
foreach($words as $word)
{
$checkWord = strtolower($word);
$first = substr($checkWord, 0, 1);
if(strlen($checkWord) > 2 && !ctype_digit($first) && !in_array($checkWord, $keywordList))
{
array_push($keywordList, $checkWord);
}
}
return $keywordList;
}
/// <summary>
/// Search for the specified keywords and return the results as a block of
/// HTML.
/// </summary>
/// <param name="keywords">The keywords for which to search</param>
/// <param name="fileInfo">The file list</param>
/// <param name="wordDictionary">The dictionary used to find the words</param>
/// <param name="sortByTitle">True to sort by title, false to sort by
/// ranking</param>
/// <returns>A block of HTML representing the search results.</returns>
function Search($keywords, $fileInfo, $wordDictionary, $sortByTitle)
{
$sb = "";
$matches = array();
$matchingFileIndices = array();
$rankings = array();
$isFirst = true;
foreach($keywords as $word)
{
if (!array_key_exists($word, $wordDictionary))
{
return "<b class=\"PaddedText\">Nothing found</b>";
}
$occurrences = $wordDictionary[$word];
$matches[$word] = $occurrences;
$occurrenceIndices = array();
// Get a list of the file indices for this match
foreach($occurrences as $entry)
array_push($occurrenceIndices, ($entry >> 16));
if($isFirst)
{
$isFirst = false;
foreach($occurrenceIndices as $i)
{
array_push($matchingFileIndices, $i);
}
}
else
{
// After the first match, remove files that do not appear for
// all found keywords.
for($idx = 0; $idx < count($matchingFileIndices); $idx++)
{
if (!in_array($matchingFileIndices[$idx], $occurrenceIndices))
{
array_splice($matchingFileIndices, $idx, 1);
$idx--;
}
}
}
}
if(count($matchingFileIndices) == 0)
{
return "<b class=\"PaddedText\">Nothing found</b>";
}
// Rank the files based on the number of times the words occurs
foreach($matchingFileIndices as $index)
{
// Split out the title, filename, and word count
$fileIndex = explode("\x00", $fileInfo[$index]);
$title = $fileIndex[0];
$filename = $fileIndex[1];
$wordCount = intval($fileIndex[2]);
$matchCount = 0;
foreach($keywords as $words)
{
$occurrences = $matches[$word];
foreach($occurrences as $entry)
{
if(($entry >> 16) == $index)
$matchCount += $entry & 0xFFFF;
}
}
$r = new Ranking($filename, $title, $matchCount * 1000 / $wordCount);
array_push($rankings, $r);
}
// Sort by rank in descending order or by page title in ascending order
if($sortByTitle)
{
usort($rankings, "cmprankbytitle");
}
else
{
usort($rankings, "cmprank");
}
// Format the file list and return the results
foreach($rankings as $r)
{
$f = $r->filename;
$t = $r->pageTitle;
$sb .= "<div class=\"TreeItem\">\r\n<img src=\"Item.gif\"/>" .
"<a class=\"UnselectedNode\" target=\"TopicContent\" " .
"href=\"$f\" onclick=\"javascript: SelectSearchNode(this);\">" .
"$t</a>\r\n</div>\r\n";
}
// Return the keywords used as well in a hidden span
$k = implode(" ", $keywords);
$sb .= "<span id=\"SearchKeywords\" style=\"display: none\">$k</span>";
return $sb;
}
function cmprank($x, $y)
{
return $y->rank - $x->rank;
}
function cmprankbytitle($x, $y)
{
return strcmp($x->pageTitle, $y->pageTitle);
}
?>

58
SearchHelp.php Normal file
View File

@ -0,0 +1,58 @@
<?
// Contributed to the Sandcastle Help File Builder project by Thomas Levesque
include("SearchHelp.inc.php");
$sortByTitle = false;
// The keywords for which to search should be passed in the query string
$searchText = $_GET["Keywords"];
if(empty($searchText))
{
?>
<b class=\"PaddedText\">Nothing found</b>
<?
return;
}
// An optional SortByTitle option can also be specified
if($_GET["SortByTitle"] == "true")
$sortByTitle = true;
$keywords = ParseKeywords($searchText);
$letters = array();
$wordDictionary = array();
// Load the file index
$json = file_get_contents("fti/FTI_Files.json");
$fileList = json_decode($json);
// Load the required word index files
foreach($keywords as $word)
{
$letter = substr($word, 0, 1);
if(!in_array($letter, $letters))
{
array_push($letters, $letter);
$ascii = ord($letter);
$ftiFile = "fti/FTI_$ascii.json";
if(file_exists($ftiFile))
{
$json = file_get_contents($ftiFile);
$ftiWords = json_decode($json, true);
foreach($ftiWords as $ftiWord => $val)
{
$wordDictionary[$ftiWord] = $val;
}
}
}
}
// Perform the search and return the results as a block of HTML
$results = Search($keywords, $fileList, $wordDictionary, $sortByTitle);
echo $results;
?>

BIN
Splitter.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 880 B

BIN
SyncTOC.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

141
TOC.css Normal file
View File

@ -0,0 +1,141 @@
/* File : TOC.css
// Author : Eric Woodruff (Eric@EWoodruff.us)
// Updated : 01/26/2014
//
// Style sheet for the table of contents
*/
* {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
body {
font-family: Verdana, Arial, sans-serif;
font-size: 9pt;
background-color: #6699CC;
color: White;
overflow: hidden;
}
input {
font-size: 8.5pt;
}
img {
border: 0;
margin-left: 5px;
margin-right: 2px;
}
img.TreeNodeImg {
cursor: pointer;
}
img.TOCLink {
cursor: pointer;
margin-left: 0;
margin-right: 0;
}
a.SelectedNode, a.UnselectedNode {
color: black;
text-decoration: none;
padding: 1px 3px 1px 3px;
white-space: nowrap;
}
a.SelectedNode {
background-color: #ffffff;
border: solid 1px #999999;
padding: 0px 2px 0px 2px;
}
a.UnselectedNode:hover, a.SelectedNode:hover {
background-color: #cccccc;
border: solid 1px #999999;
padding: 0px 2px 0px 2px;
}
.Visible {
display: block;
margin-left: 14px;
}
.Hidden {
display: none;
}
.Tree {
background-color: #ffffff;
color: Black;
width: 300px;
overflow: auto;
}
.TreeNode, .TreeItem {
white-space: nowrap;
margin: 2px 2px 2px 2px;
}
.TOCDiv {
position: relative;
float: left;
width: 300px;
height: 100%;
}
.TOCSizer {
clear: none;
float: left;
width: 10px;
height: 100%;
background-color: #6699CC;
background-image: url("Splitter.gif");
background-position: center center;
background-repeat: no-repeat;
position: relative;
cursor: w-resize;
}
.TopicContent {
position: relative;
float: right;
background-color: white;
height: 100%;
}
.SearchOpts {
padding: 5px 5px 0px 5px;
background-color: #d3d3d3;
color: black;
width: 300px;
}
.NavOpts {
padding: 5px 5px 0px 5px;
background-color: #d3d3d3;
color: black;
width: 300px;
}
.IndexOpts {
padding: 5px 5px 0px 5px;
background-color: #d3d3d3;
color: black;
width: 300px;
}
.IndexItem {
white-space: nowrap;
margin: 2px 2px 2px 2px;
}
.IndexSubItem {
white-space: nowrap;
margin: 2px 2px 2px 12px;
}
.PaddedText {
margin: 10px 10px 10px 10px;
}

905
TOC.js Normal file
View File

@ -0,0 +1,905 @@
//===============================================================================================================
// System : Sandcastle Help File Builder
// File : TOC.js
// Author : Eric Woodruff (Eric@EWoodruff.us)
// Updated : 11/19/2013
// Note : Copyright 2006-2013, Eric Woodruff, All rights reserved
// Compiler: JavaScript
//
// This file contains the methods necessary to implement a simple tree view for the table of content with a
// resizable splitter and Ajax support to load tree nodes on demand. It also contains the script necessary to do
// full-text searches.
//
// This code is published under the Microsoft Public License (Ms-PL). A copy of the license should be
// distributed with the code. It can also be found at the project website: http://SHFB.CodePlex.com. This
// notice, the author's name, and all copyright notices must remain intact in all applications, documentation,
// and source files.
//
// Version Date Who Comments
// ==============================================================================================================
// 1.3.0.0 09/12/2006 EFW Created the code
// 1.4.0.2 06/15/2007 EFW Reworked to get rid of frame set and to add support for Ajax to load tree nodes on
// demand.
// 1.5.0.0 06/24/2007 EFW Added full-text search capabilities
// 1.6.0.7 04/01/2008 EFW Merged changes from Ferdinand Prantl to add a website keyword index. Added support
// for "topic" query string option.
// 1.9.4.0 02/21/2012 EFW Merged code from Thomas Levesque to show direct link and support other page types
// like PHP.
// 1.9.5.0 07/25/2012 EFW Made changes to support IE 10.
// 1.9.8.0 07/26/2013 EFW Merged changes from Dave Dansey to sync to TOC when the topic URL parameter is used
//===============================================================================================================
// IE and Chrome flags
var isIE = (navigator.userAgent.indexOf("MSIE") >= 0);
var isIE10OrLater = /MSIE 1\d\./.test(navigator.userAgent);
var isChrome = (navigator.userAgent.indexOf("Chrome") >= 0);
// Page extension
var pageExtension = ".aspx";
// Minimum width of the TOC div
var minWidth = 100;
// Elements and sizing info
var divTOC, divSizer, topicContent, divNavOpts, divSearchOpts, divSearchResults, divIndexOpts, divIndexResults,
divTree, docBody, maxWidth, offset, txtSearchText, chkSortByTitle;
// Last node selected
var lastNode, lastSearchNode, lastIndexNode;
// Last page with keyword index
var currentIndexPage = 0;
// XML Doc of the TOC
var xmlTOCDoc
//============================================================================
// Initialize the tree view and resize the content. Pass it the page extension to use (i.e. ".aspx")
// for loading TOC element, index keywords, searching, etc.
function Initialize(extension)
{
docBody = document.getElementsByTagName("body")[0];
divTOC = document.getElementById("TOCDiv");
divSizer = document.getElementById("TOCSizer");
topicContent = document.getElementById("TopicContent");
divNavOpts = document.getElementById("divNavOpts");
divSearchOpts = document.getElementById("divSearchOpts");
divSearchResults = document.getElementById("divSearchResults");
divIndexOpts = document.getElementById("divIndexOpts");
divIndexResults = document.getElementById("divIndexResults");
divTree = document.getElementById("divTree");
txtSearchText = document.getElementById("txtSearchText");
chkSortByTitle = document.getElementById("chkSortByTitle");
// Set the page extension if specified
if(typeof(extension) != "undefined" && extension != "")
pageExtension = extension;
// The sizes are bit off in FireFox
if(!isIE)
divNavOpts.style.width = divSearchOpts.style.width = divIndexOpts.style.width = 292;
ResizeTree();
SyncTOC();
topicContent.onload = SyncTOC;
// Use an alternate default page if a topic is specified in the query string
var queryString = document.location.search;
if(queryString != "")
{
var idx, options = queryString.split(/[\?\=\&]/);
for(idx = 0; idx < options.length; idx++)
if(options[idx] == "topic" && idx + 1 < options.length)
{
// Don't allow references outside the current site
if(options[idx + 1].length > 1 && options[idx + 1][0] != '/' && options[idx + 1][0] != '.')
topicContent.src = options[idx + 1];
break;
}
}
}
//============================================================================
// Navigation and expand/collapse code
// Synchronize the table of content with the selected page if possible
function SyncTOC()
{
var idx, anchor, base, href, url, anchors, treeNode, saveNode;
base = window.location.href;
base = base.substr(0, base.lastIndexOf("/") + 1);
if(base.substr(0, 5) == "file:" && base.substr(0, 8) != "file:///")
base = base.replace("file://", "file:///");
url = GetCurrentUrl();
if(url == "")
return false;
if(url.substr(0, 5) == "file:" && url.substr(0, 8) != "file:///")
url = url.replace("file://", "file:///");
while(true)
{
anchors = divTree.getElementsByTagName("A");
anchor = null;
for(idx = 0; idx < anchors.length; idx++)
{
href = anchors[idx].href;
if(href.substring(0, 7) != 'http://' && href.substring(0, 8) != 'https://' &&
href.substring(0, 7) != 'file://')
href = base + href;
if(href == url)
{
anchor = anchors[idx];
break;
}
}
if(anchor == null)
{
// If it contains a "#", strip anything after that and try again
if(url.indexOf("#") != -1)
{
url = url.substr(0, url.indexOf("#"));
continue;
}
LoadTOC(url);
return;
}
break;
}
// If found, select it and find the parent tree node
SelectNode(anchor);
saveNode = anchor;
lastNode = null;
while(anchor != null)
{
if(anchor.className == "TreeNode")
{
treeNode = anchor;
break;
}
anchor = anchor.parentNode;
}
// Expand it and all of its parents
while(anchor != null)
{
Expand(anchor);
anchor = anchor.parentNode;
while(anchor != null)
{
if(anchor.className == "TreeNode")
break;
anchor = anchor.parentNode;
}
}
lastNode = saveNode;
// Scroll the node into view
var windowTop = lastNode.offsetTop - divTree.offsetTop - divTree.scrollTop;
var windowBottom = divTree.clientHeight - windowTop - lastNode.offsetHeight;
if(windowTop < 0)
divTree.scrollTop += windowTop - 30;
else
if(windowBottom < 0)
divTree.scrollTop -= windowBottom - 30;
}
// Search an array to see if it contains the given object
function Contains(a, obj)
{
for(var i = 0; i < a.length; i++)
if(a[i] === obj)
return true;
return false;
}
// Get the parent TOC IDs from the TOC XML file
function GetParentTOCIds(target)
{
if(xmlTOCDoc == null)
{
// Load the TOC XML
try
{
var xmlhttp = GetXmlHttpRequest();
xmlhttp.open("GET", "WebTOC.xml", false);
xmlhttp.send();
xmlTOCDoc = xmlhttp.responseXML;
}
catch(e)
{
// alert(e.message);
}
if(xmlTOCDoc == null)
return new Array();
}
// Get all TOC nodes
x = xmlTOCDoc.getElementsByTagName("HelpTOCNode");
// Iterate nodes looking for the target
var targetNode = null;
for(i = 0; i < x.length; i++)
{
var id = x[i].getAttribute('Url');
id = id.substring(id.lastIndexOf("/") + 1, id.length - (id.length - id.lastIndexOf(".")));
if(id == target)
{
targetNode = x[i];
break;
}
}
// Build an array of parent ids of the target node
var ids = new Array();
if(targetNode != null)
{
var index = 0;
while(targetNode.parentNode.tagName == "HelpTOCNode")
{
targetNode = targetNode.parentNode;
ids[index] = targetNode.getAttribute('Id');
index = index + 1;
}
}
return ids
}
// Load the TOC and expand all parent nodes down to the given entry
function LoadTOC(url)
{
// Extract the target id from the url
var target = url.substring(url.lastIndexOf("/") + 1, url.length - (url.length - url.lastIndexOf(".")));
// Get an array of parent id's
var idList = GetParentTOCIds(target);
var divIdx, childIdx, img, divs = document.getElementsByTagName("DIV");
var childNodes, child, div;
// Loop through all DIV tags, looking for the next one to lazy-load
for(divIdx = 0; divIdx < divs.length; divIdx++)
if(divs[divIdx].className == "Hidden" || divs[divIdx].className == "Visible")
{
childNodes = divs[divIdx].parentNode.childNodes;
for(childIdx = 0; childIdx < childNodes.length; childIdx++)
{
child = childNodes[childIdx];
if(child.className == "TreeNodeImg")
img = child;
if(child.className == "Hidden" || child.className == "Visible")
{
div = child;
break;
}
}
if(div.className == "Hidden" && Contains(idList,div.id))
{
div.className = "Visible";
img.src = "Expanded.gif";
if(div.innerHTML == "")
FillNodeAndTrySyncTOC(div)
}
}
}
// Lazy load the child TOC nodes and re-try to SyncTOC afterwards (if the TOC still can't be synced the process
// will run again to expand the next parent down).
function FillNodeAndTrySyncTOC(div)
{
var xmlHttp = GetXmlHttpRequest(), now = new Date();
if(xmlHttp == null)
{
div.innerHTML = "<b>XML HTTP request not supported!</b>";
return;
}
div.innerHTML = "Loading...";
// Add a unique hash to ensure it doesn't use cached results
xmlHttp.open("GET", "FillNode" + pageExtension + "?Id=" + div.id + "&hash=" + now.getTime(), true);
xmlHttp.onreadystatechange = function()
{
if(xmlHttp.readyState == 4)
{
div.innerHTML = xmlHttp.responseText;
SyncTOC();
}
}
xmlHttp.send(null)
}
// Get the currently loaded URL from the IFRAME
function GetCurrentUrl()
{
var base, url = "";
try
{
url = window.frames["TopicContent"].document.URL.replace(/\\/g, "/");
}
catch(e)
{
// If this happens the user probably navigated to another frame set that didn't make itself the topmost
// frame set and we don't have control of the other frame anymore. In that case, just reload our index
// page.
base = window.location.href;
base = base.substr(0, base.lastIndexOf("/") + 1);
// Chrome is too secure and won't let you access frame URLs when running from the file system unless
// you run Chrome with the "--disable-web-security" command line option.
if(isChrome && base.substr(0, 5) == "file:")
{
alert("Chrome security prevents access to file-based frame URLs. As such, the TOC will not work " +
"with index.html. Either run this website on a web server, run Chrome with the " +
"'--disable-web-security' command line option, or use FireFox or Internet Explorer.");
return "";
}
if(base.substr(0, 5) == "file:" && base.substr(0, 8) != "file:///")
base = base.replace("file://", "file:///");
// Use lowercase on name for case-sensitive servers
if(base.substr(0, 5) == "file:")
top.location.href = base + "index.html";
else
top.location.href = base + "index" + pageExtension;
}
return url;
}
// Expand or collapse all nodes
function ExpandOrCollapseAll(expandNodes)
{
var divIdx, childIdx, img, divs = document.getElementsByTagName("DIV");
var childNodes, child, div, link, img;
for(divIdx = 0; divIdx < divs.length; divIdx++)
if(divs[divIdx].className == "Hidden" || divs[divIdx].className == "Visible")
{
childNodes = divs[divIdx].parentNode.childNodes;
for(childIdx = 0; childIdx < childNodes.length; childIdx++)
{
child = childNodes[childIdx];
if(child.className == "TreeNodeImg")
img = child;
if(child.className == "Hidden" || child.className == "Visible")
{
div = child;
break;
}
}
if(div.className == "Visible" && !expandNodes)
{
div.className = "Hidden";
img.src = "Collapsed.gif";
}
else
if(div.className == "Hidden" && expandNodes)
{
div.className = "Visible";
img.src = "Expanded.gif";
if(div.innerHTML == "")
FillNode(div, true)
}
}
}
// Toggle the state of the specified node
function Toggle(node)
{
var i, childNodes, child, div, link;
childNodes = node.parentNode.childNodes;
for(i = 0; i < childNodes.length; i++)
{
child = childNodes[i];
if(child.className == "Hidden" || child.className == "Visible")
{
div = child;
break;
}
}
if(div.className == "Visible")
{
div.className = "Hidden";
node.src = "Collapsed.gif";
}
else
{
div.className = "Visible";
node.src = "Expanded.gif";
if(div.innerHTML == "")
FillNode(div, false)
}
}
// Expand the selected node
function Expand(node)
{
var i, childNodes, child, div, img;
// If not valid, don't bother
if(GetCurrentUrl() == "")
return false;
if(node.tagName == "A")
childNodes = node.parentNode.childNodes;
else
childNodes = node.childNodes;
for(i = 0; i < childNodes.length; i++)
{
child = childNodes[i];
if(child.className == "TreeNodeImg")
img = child;
if(child.className == "Hidden" || child.className == "Visible")
{
div = child;
break;
}
}
if(lastNode != null)
lastNode.className = "UnselectedNode";
div.className = "Visible";
img.src = "Expanded.gif";
if(node.tagName == "A")
{
node.className = "SelectedNode";
lastNode = node;
}
if(div.innerHTML == "")
FillNode(div, false)
return true;
}
// Set the style of the specified node to "selected"
function SelectNode(node)
{
// If not valid, don't bother
if(GetCurrentUrl() == "")
return false;
if(lastNode != null)
lastNode.className = "UnselectedNode";
node.className = "SelectedNode";
lastNode = node;
return true;
}
//============================================================================
// Ajax-related code used to fill the tree nodes on demand
function GetXmlHttpRequest()
{
var xmlHttp = null;
// If IE7, Mozilla, Safari, etc., use the native object. Otherwise, use the ActiveX control for IE5.x and IE6.
if(window.XMLHttpRequest)
xmlHttp = new XMLHttpRequest();
else
if(window.ActiveXObject)
xmlHttp = new ActiveXObject("MSXML2.XMLHTTP.3.0");
return xmlHttp;
}
// Perform an AJAX-style request for the contents of a node and put the contents into the empty div
function FillNode(div, expandChildren)
{
var xmlHttp = GetXmlHttpRequest(), now = new Date();
if(xmlHttp == null)
{
div.innerHTML = "<b>XML HTTP request not supported!</b>";
return;
}
div.innerHTML = "Loading...";
// Add a unique hash to ensure it doesn't use cached results
xmlHttp.open("GET", "FillNode" + pageExtension + "?Id=" + div.id + "&hash=" + now.getTime(), true);
xmlHttp.onreadystatechange = function()
{
if(xmlHttp.readyState == 4)
{
div.innerHTML = xmlHttp.responseText;
if(expandChildren)
ExpandOrCollapseAll(true);
}
}
xmlHttp.send(null)
}
//============================================================================
// Resizing code
// Resize the tree div so that it fills the document body
function ResizeTree()
{
var y, newHeight;
if(self.innerHeight) // All but IE
y = self.innerHeight;
else // IE - Strict
if(document.documentElement && document.documentElement.clientHeight)
y = document.documentElement.clientHeight;
else // Everything else
if(document.body)
y = document.body.clientHeight;
newHeight = y - parseInt(divNavOpts.style.height, 10) - 6;
if(newHeight < 50)
newHeight = 50;
divTree.style.height = newHeight;
newHeight = y - parseInt(divSearchOpts.style.height, 10) - 6;
if(newHeight < 100)
newHeight = 100;
divSearchResults.style.height = newHeight;
newHeight = y - parseInt(divIndexOpts.style.height, 10) - 6;
if(newHeight < 25)
newHeight = 25;
divIndexResults.style.height = newHeight;
// Resize the content div
ResizeContent();
}
// Resize the content div
function ResizeContent()
{
// IE 10 sizes the frame like FireFox and Chrome
if(isIE && !isIE10OrLater)
maxWidth = docBody.clientWidth - 1;
else
maxWidth = docBody.clientWidth - 4;
topicContent.style.width = maxWidth - (divSizer.offsetLeft + divSizer.offsetWidth);
maxWidth -= minWidth;
}
// This is called to prepare for dragging the sizer div
function OnMouseDown(event)
{
var x;
// Make sure the splitter is at the top of the z-index
divSizer.style.zIndex = 5000;
// The content is in an IFRAME which steals mouse events so hide it while resizing
topicContent.style.display = "none";
if(isIE)
x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
else
x = event.clientX + window.scrollX;
// Save starting offset
offset = parseInt(divSizer.style.left, 10);
if(isNaN(offset))
offset = 0;
offset -= x;
if(isIE)
{
document.attachEvent("onmousemove", OnMouseMove);
document.attachEvent("onmouseup", OnMouseUp);
window.event.cancelBubble = true;
window.event.returnValue = false;
}
else
{
document.addEventListener("mousemove", OnMouseMove, true);
document.addEventListener("mouseup", OnMouseUp, true);
event.preventDefault();
}
}
// Resize the TOC and content divs as the sizer is dragged
function OnMouseMove(event)
{
var x, pos;
// Get cursor position with respect to the page
if(isIE)
x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
else
x = event.clientX + window.scrollX;
left = offset + x;
// Adjusts the width of the TOC divs
pos = (event.clientX > maxWidth) ? maxWidth : (event.clientX < minWidth) ? minWidth : event.clientX;
divTOC.style.width = divSearchResults.style.width = divIndexResults.style.width = divTree.style.width = pos;
if(!isIE)
pos -= 8;
divNavOpts.style.width = divSearchOpts.style.width = divIndexOpts.style.width = pos;
// Resize the content div to fit in the remaining space
ResizeContent();
}
// Finish the drag operation when the mouse button is released
function OnMouseUp(event)
{
if(isIE)
{
document.detachEvent("onmousemove", OnMouseMove);
document.detachEvent("onmouseup", OnMouseUp);
}
else
{
document.removeEventListener("mousemove", OnMouseMove, true);
document.removeEventListener("mouseup", OnMouseUp, true);
}
// Show the content div again
topicContent.style.display = "inline";
}
//============================================================================
// Search code
function ShowHideSearch(show)
{
if(show)
{
divNavOpts.style.display = divTree.style.display = "none";
divSearchOpts.style.display = divSearchResults.style.display = "";
}
else
{
divSearchOpts.style.display = divSearchResults.style.display = "none";
divNavOpts.style.display = divTree.style.display = "";
}
}
// When enter is hit in the search text box, do the search
function OnSearchTextKeyPress(evt)
{
if(evt.keyCode == 13)
{
PerformSearch();
return false;
}
return true;
}
// Perform a keyword search
function PerformSearch()
{
var xmlHttp = GetXmlHttpRequest(), now = new Date();
if(xmlHttp == null)
{
divSearchResults.innerHTML = "<b>XML HTTP request not supported!</b>";
return;
}
divSearchResults.innerHTML = "<span class=\"PaddedText\">Searching...</span>";
// Add a unique hash to ensure it doesn't use cached results
xmlHttp.open("GET", "SearchHelp" + pageExtension + "?Keywords=" + txtSearchText.value +
"&SortByTitle=" + (chkSortByTitle.checked ? "true" : "false") +
"&hash=" + now.getTime(), true);
xmlHttp.onreadystatechange = function()
{
if(xmlHttp.readyState == 4)
{
divSearchResults.innerHTML = xmlHttp.responseText;
lastSearchNode = divSearchResults.childNodes[0].childNodes[1];
while(lastSearchNode != null && lastSearchNode.tagName != "A")
lastSearchNode = lastSearchNode.nextSibling;
if(lastSearchNode != null)
{
SelectSearchNode(lastSearchNode);
topicContent.src = lastSearchNode.href;
}
}
}
xmlHttp.send(null)
}
// Set the style of the specified search result node to "selected"
function SelectSearchNode(node)
{
if(lastSearchNode != null)
lastSearchNode.className = "UnselectedNode";
node.className = "SelectedNode";
lastSearchNode = node;
return true;
}
//============================================================================
// KeyWordIndex code
function ShowHideIndex(show)
{
if(show)
{
PopulateIndex(currentIndexPage);
divNavOpts.style.display = divTree.style.display = "none";
divIndexOpts.style.display = divIndexResults.style.display = "";
}
else
{
divIndexOpts.style.display = divIndexResults.style.display = "none";
divNavOpts.style.display = divTree.style.display = "";
}
}
// Populate keyword index
function PopulateIndex(startIndex)
{
var xmlHttp = GetXmlHttpRequest(), now = new Date();
var firstNode;
if(xmlHttp == null)
{
divIndexResults.innerHTML = "<b>XML HTTP request not supported!</b>";
return;
}
divIndexResults.innerHTML = "<span class=\"PaddedText\">Loading keyword index...</span>";
// Add a unique hash to ensure it doesn't use cached results
xmlHttp.open("GET", "LoadIndexKeywords" + pageExtension + "?StartIndex=" + startIndex +
"&hash=" + now.getTime(), true);
xmlHttp.onreadystatechange = function()
{
if(xmlHttp.readyState == 4)
{
divIndexResults.innerHTML = xmlHttp.responseText;
if(startIndex > 0)
{
firstNode = divIndexResults.childNodes[1];
if(firstNode != null && !firstNode.innerHTML)
firstNode = divIndexResults.childNodes[2];
}
else
firstNode = divIndexResults.childNodes[0];
if(firstNode != null)
lastIndexNode = firstNode.childNodes[0];
while(lastIndexNode != null && lastIndexNode.tagName != "A")
lastIndexNode = lastIndexNode.nextSibling;
if(lastIndexNode != null)
{
SelectIndexNode(lastIndexNode);
topicContent.src = lastIndexNode.href;
}
currentIndexPage = startIndex;
}
}
xmlHttp.send(null)
}
// Set the style of the specified keyword index node to "selected"
function SelectIndexNode(node)
{
if(lastIndexNode != null)
lastIndexNode.className = "UnselectedNode";
node.className = "SelectedNode";
lastIndexNode = node;
return true;
}
// Changes the current page with keyword index forward or backward
function ChangeIndexPage(direction)
{
PopulateIndex(currentIndexPage + direction);
return false;
}
// Show a direct link to the currently displayed topic
function ShowDirectLink()
{
var url = GetCurrentUrl();
var base = window.location.href;
if(base.indexOf("?") > 0)
base = base.substr(0, base.indexOf("?") + 1);
base = base.substr(0, base.lastIndexOf("/") + 1);
var relative = url.substr(base.length);
// Using prompt lets the user copy it from the text box
prompt("Direct link", base + "?topic=" + relative);
}

31
Web.Config Normal file
View File

@ -0,0 +1,31 @@
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<system.web>
<compilation debug="false">
<assemblies>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</assemblies>
</compilation>
<pages>
<namespaces>
<add namespace="System"/>
<add namespace="System.Collections.Generic"/>
<add namespace="System.Globalization"/>
<add namespace="System.IO"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Script.Serialization"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Xml"/>
<add namespace="System.Xml.Serialization" />
<add namespace="System.Xml.XPath"/>
</namespaces>
</pages>
</system.web>
<appSettings>
<!-- Increase this value if you get an "Operation is not valid due to the current state of the object" error
when using the search page. -->
<add key="aspnet:MaxJsonDeserializerMembers" value="100000" />
</appSettings>
</configuration>

867
WebKI.xml Normal file
View File

@ -0,0 +1,867 @@
<?xml version="1.0" encoding="utf-8"?>
<HelpKI>
<HelpKINode Title="Accumulate method">
<HelpKINode Title="GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult).Accumulate Method " Url="html/ffa4b6ac-5e03-29aa-ec10-7aab8893edd2.htm" />
<HelpKINode Title="IDecomposable(TSource, TAccumulate, TResult).Accumulate Method " Url="html/f7141b46-f316-6b6b-13dd-b38da64deda1.htm" />
</HelpKINode>
<HelpKINode Title="AddCritical method" Url="html/fb0017d4-2002-13a0-845c-9c86972f6404.htm" />
<HelpKINode Title="AddError method" Url="html/6d667751-03f2-3777-378f-dc995f109148.htm" />
<HelpKINode Title="AddInfo method" Url="html/36d5998d-a061-1d6e-c67a-3bc77cf7a1ed.htm" />
<HelpKINode Title="AddVerbose method" Url="html/f8a22de5-0cb8-e869-23e3-4c8053897b46.htm" />
<HelpKINode Title="AddWarning method" Url="html/a78f10bf-2daf-79ab-cb29-8319316d39f7.htm" />
<HelpKINode Title="Aggregate method" Url="html/c0f6970e-9d7d-0f05-99ec-aea86dd3901d.htm" />
<HelpKINode Title="AggregateAsQuery method" Url="html/6cd1fdb7-0be2-f40e-96a7-266629debe2e.htm" />
<HelpKINode Title="AllAsQuery(Of TSource) method" Url="html/e15e3251-3443-58ca-7e56-f1a9abf0e18e.htm" />
<HelpKINode Title="AllAsQuery&lt;TSource&gt; method" Url="html/e15e3251-3443-58ca-7e56-f1a9abf0e18e.htm" />
<HelpKINode Title="AnyAsQuery method" Url="html/65e4aa00-0ceb-92d0-9f0f-653938c30ace.htm" />
<HelpKINode Title="Apply method" Url="html/b3becad6-86fb-857e-5ee5-295a2d23b663.htm" />
<HelpKINode Title="ApplyPerPartition method" Url="html/072ffb1e-75fa-7aa1-fb37-b34393ddcab4.htm" />
<HelpKINode Title="ApplyWithPartitionIndex(Of T1, T2) method" Url="html/a88c1234-7c0c-d694-11e5-b47c155fdc94.htm" />
<HelpKINode Title="ApplyWithPartitionIndex&lt;T1, T2&gt; method" Url="html/a88c1234-7c0c-d694-11e5-b47c155fdc94.htm" />
<HelpKINode Title="AssociativeAttribute class">
<HelpKINode Title="AssociativeAttribute Class" Url="html/d3237c01-5085-45a9-fa72-8e489a9bf480.htm" />
<HelpKINode Title="about AssociativeAttribute class" Url="html/d3237c01-5085-45a9-fa72-8e489a9bf480.htm" />
<HelpKINode Title="constructor" Url="html/d983b9ab-497d-ab70-c9a7-6a7deba87eeb.htm" />
<HelpKINode Title="methods" Url="html/2742392b-14df-2e20-8199-eba6eff9de1e.htm" />
<HelpKINode Title="properties" Url="html/68d64338-5cda-816c-965b-9e8f70c00350.htm" />
</HelpKINode>
<HelpKINode Title="AssociativeAttribute.AssociativeAttribute constructor" Url="html/d983b9ab-497d-ab70-c9a7-6a7deba87eeb.htm" />
<HelpKINode Title="AssociativeAttribute.AssociativeType property" Url="html/daef2faf-6f9e-bfd4-710b-d0a00af66587.htm" />
<HelpKINode Title="AssociativeType property" Url="html/daef2faf-6f9e-bfd4-710b-d0a00af66587.htm" />
<HelpKINode Title="AssumeHashPartition method" Url="html/0fe358e3-5219-60c4-1a15-c77bd51338f7.htm" />
<HelpKINode Title="AssumeOrderBy method" Url="html/98cee862-bd46-4244-cdbe-0783a9474bd5.htm" />
<HelpKINode Title="AssumeRangePartition method" Url="html/05317da6-b361-379e-397d-e34d85c6856d.htm" />
<HelpKINode Title="AverageAsQuery method" Url="html/1b4e9327-9b61-e353-0051-d36bb399ce3e.htm" />
<HelpKINode Title="AzureAccountKey method" Url="html/2d28ac74-38d0-f39d-2a5b-879b8089889b.htm" />
<HelpKINode Title="BroadCast method" Url="html/cc46bb36-e5ca-8273-a411-4f6b54885a8b.htm" />
<HelpKINode Title="CanBeNull property" Url="html/4cf712fd-ccc7-ba39-e732-6fdaf9453187.htm" />
<HelpKINode Title="CancelJob method" Url="html/da218c9d-8317-6573-83b6-ac6c2264c47e.htm" />
<HelpKINode Title="CheckExistence method" Url="html/7957fe73-07cf-2939-6e5e-a974e62adae3.htm" />
<HelpKINode Title="CheckOrderBy(Of TSource, TKey) method" Url="html/895403fc-6f72-5cdc-76c0-ec7fdd32d923.htm" />
<HelpKINode Title="CheckOrderBy&lt;TSource, TKey&gt; method" Url="html/895403fc-6f72-5cdc-76c0-ec7fdd32d923.htm" />
<HelpKINode Title="Client method" Url="html/7f734680-4cdf-d557-8034-45cff61afcbc.htm" />
<HelpKINode Title="ClientVersion method" Url="html/c441f14e-35fd-3f66-3e98-95bba06f8461.htm" />
<HelpKINode Title="CompareTo method" Url="html/62af3731-c551-19e3-10bc-dab7b3edc7ed.htm" />
<HelpKINode Title="CompileForVertexDebugging property" Url="html/06266f74-a819-017c-e03f-0f9761a28c52.htm" />
<HelpKINode Title="CompressionScheme enumeration" Url="html/9266635e-c3ea-7e66-528b-f44b55a2daca.htm" />
<HelpKINode Title="ContainsAsQuery method" Url="html/79406ffb-6664-636a-bd34-d80965d38172.htm" />
<HelpKINode Title="CountAsQuery method" Url="html/b26b8681-c9eb-e216-6c54-d34454d3dd80.htm" />
<HelpKINode Title="Critical enumeration member" Url="html/7f48283a-3fd5-7bf1-1b43-e0164f893f54.htm" />
<HelpKINode Title="CrossProduct(Of T1, T2, T3) method" Url="html/d5302869-185b-30a0-e61a-0b95888c6be9.htm" />
<HelpKINode Title="CrossProduct&lt;T1, T2, T3&gt; method" Url="html/d5302869-185b-30a0-e61a-0b95888c6be9.htm" />
<HelpKINode Title="CustomDryadLinqSerializerAttribute class">
<HelpKINode Title="CustomDryadLinqSerializerAttribute Class" Url="html/1842f60d-35dc-a934-cc36-dfa0cba934e1.htm" />
<HelpKINode Title="about CustomDryadLinqSerializerAttribute class" Url="html/1842f60d-35dc-a934-cc36-dfa0cba934e1.htm" />
<HelpKINode Title="constructor" Url="html/188cfe0e-30ad-5808-ecf3-69159ca7250f.htm" />
<HelpKINode Title="methods" Url="html/fddc68e4-67ac-e5ac-4bc5-b09c806cf123.htm" />
<HelpKINode Title="properties" Url="html/ee419700-0f92-43f8-3218-d012d674cf28.htm" />
</HelpKINode>
<HelpKINode Title="CustomDryadLinqSerializerAttribute.CustomDryadLinqSerializerAttribute constructor" Url="html/188cfe0e-30ad-5808-ecf3-69159ca7250f.htm" />
<HelpKINode Title="CustomDryadLinqSerializerAttribute.SerializerType property" Url="html/5a4ebe0b-dfae-da42-1c4f-3face32fbe00.htm" />
<HelpKINode Title="DataProvider class">
<HelpKINode Title="DataProvider Class" Url="html/e30d9823-523d-4504-b321-4c990c768d6d.htm" />
<HelpKINode Title="about DataProvider class" Url="html/e30d9823-523d-4504-b321-4c990c768d6d.htm" />
<HelpKINode Title="constructor" Url="html/59154932-1406-ee03-f7cf-759e92e86ace.htm" />
<HelpKINode Title="methods" Url="html/63b737ac-d6fd-b67e-8fcc-c61cf5e14b3b.htm" />
<HelpKINode Title="properties" Url="html/cee341d1-e9b4-faf0-3556-8c93401e18be.htm" />
</HelpKINode>
<HelpKINode Title="DataProvider.CheckExistence method" Url="html/7957fe73-07cf-2939-6e5e-a974e62adae3.htm" />
<HelpKINode Title="DataProvider.DataProvider constructor" Url="html/59154932-1406-ee03-f7cf-759e92e86ace.htm" />
<HelpKINode Title="DataProvider.Egress method" Url="html/76dc89db-d2f7-c6b1-ee72-231a3e1881fc.htm" />
<HelpKINode Title="DataProvider.GetMetaData method" Url="html/03212629-8351-bc14-0918-ef18541c60f6.htm" />
<HelpKINode Title="DataProvider.GetStreamInfo method" Url="html/e491d2f3-4406-ba06-33ac-287ada771687.htm" />
<HelpKINode Title="DataProvider.GetTemporaryStreamUri method" Url="html/893d5450-6706-1bac-214f-1be575dcb4a9.htm" />
<HelpKINode Title="DataProvider.Ingress(Of T) method" Url="html/3bf58a6c-aa87-cb1f-9aea-1c3c59c898d1.htm" />
<HelpKINode Title="DataProvider.Ingress&lt;T&gt; method" Url="html/3bf58a6c-aa87-cb1f-9aea-1c3c59c898d1.htm" />
<HelpKINode Title="DataProvider.PathSeparator property" Url="html/b858c440-72f0-0ede-cb6e-92651cf1c9e7.htm" />
<HelpKINode Title="DataProvider.ReadData(Of T) method" Url="html/b3b5d8dc-09fb-27ab-fbab-b2e58ab970a3.htm" />
<HelpKINode Title="DataProvider.ReadData&lt;T&gt; method" Url="html/b3b5d8dc-09fb-27ab-fbab-b2e58ab970a3.htm" />
<HelpKINode Title="DataProvider.Register method" Url="html/a75dd58d-7100-3ca7-290f-9bdb23548453.htm" />
<HelpKINode Title="DataProvider.RewriteUri(Of T) method" Url="html/325384d4-2a45-fe6c-b801-212e9d856332.htm" />
<HelpKINode Title="DataProvider.RewriteUri&lt;T&gt; method" Url="html/325384d4-2a45-fe6c-b801-212e9d856332.htm" />
<HelpKINode Title="DataProvider.Scheme property" Url="html/8c73442d-fbb2-4170-5d0f-2a61d34c83ca.htm" />
<HelpKINode Title="DataSize property" Url="html/da53c4f0-d5ab-702f-e073-ec9b6ea2f82b.htm" />
<HelpKINode Title="DebugBreak property" Url="html/0bc5d95a-ef00-1073-ac66-8aa04e76bea4.htm" />
<HelpKINode Title="DecomposableAttribute class">
<HelpKINode Title="DecomposableAttribute Class" Url="html/49fcc552-44b3-1cd7-9e8d-0182923c9af4.htm" />
<HelpKINode Title="about DecomposableAttribute class" Url="html/49fcc552-44b3-1cd7-9e8d-0182923c9af4.htm" />
<HelpKINode Title="constructor" Url="html/43e39b06-dae0-8746-65d9-ad9db2814283.htm" />
<HelpKINode Title="methods" Url="html/1634cb40-8440-9f89-4255-84fa32a3ba65.htm" />
<HelpKINode Title="properties" Url="html/dfb2cde5-43c0-b931-a2ce-7dccbeb13bd3.htm" />
</HelpKINode>
<HelpKINode Title="DecomposableAttribute.DecomposableAttribute constructor" Url="html/43e39b06-dae0-8746-65d9-ad9db2814283.htm" />
<HelpKINode Title="DecomposableAttribute.DecompositionType property" Url="html/788f4f30-eed5-7aa7-045f-30121da5937e.htm" />
<HelpKINode Title="DecompositionType property" Url="html/788f4f30-eed5-7aa7-045f-30121da5937e.htm" />
<HelpKINode Title="DfsClient property" Url="html/bca2414d-9eb5-0563-8c12-58b6c58effd0.htm" />
<HelpKINode Title="Dispose method" Url="html/adbb7cea-3cd7-a024-d14b-35fc87b257a7.htm" />
<HelpKINode Title="DoWhile method" Url="html/e453d0ea-ad38-4d2b-20e0-6d48fb35e1b5.htm" />
<HelpKINode Title="DoWhile(Of T) method" Url="html/d0d82a69-b3db-d19d-8def-edc5457aca2e.htm" />
<HelpKINode Title="DoWhile&lt;T&gt; method" Url="html/d0d82a69-b3db-d19d-8def-edc5457aca2e.htm" />
<HelpKINode Title="DRYAD enumeration member" Url="html/e652bfe9-c973-2744-87c1-e63cf9db4f56.htm" />
<HelpKINode Title="DryadHomeDirectory property" Url="html/1a3367ed-b951-d562-fbbc-4da581fb22ff.htm" />
<HelpKINode Title="DryadLinqBinaryReader class">
<HelpKINode Title="DryadLinqBinaryReader Class" Url="html/e2f6b120-72cd-d97c-d0c9-9ab1b4abb5b5.htm" />
<HelpKINode Title="about DryadLinqBinaryReader class" Url="html/e2f6b120-72cd-d97c-d0c9-9ab1b4abb5b5.htm" />
<HelpKINode Title="methods" Url="html/0f3128d9-99ac-a067-779a-bdc86f46af10.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqBinaryReader.ReadBool method" Url="html/2ee81ea8-7bae-c5c3-321d-a2f34f52376e.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadBytes method" Url="html/40368e39-431f-8596-e970-9996a945e453.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadChar method" Url="html/f9f3883f-e817-f693-6540-03eaa31f66fe.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadChars method" Url="html/5523eb71-f765-488d-a0ed-570dcebea4a3.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadCompactInt32 method" Url="html/521aa3b5-08a2-a367-d7cb-e385573c0327.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadDateTime method" Url="html/72e693e2-7766-ed09-a7a3-03c782937026.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadDecimal method" Url="html/74b7a3c4-0a88-c5e0-7fd7-7bcdadb47cf5.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadDouble method" Url="html/f8a16c4a-7d02-1d28-3f87-0c648c533771.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadGuid method" Url="html/35d50873-486c-2704-0353-cac33d12a191.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadInt16 method" Url="html/81938094-e3ac-6406-639d-7bcc0b33af4d.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadInt32 method" Url="html/154a0be2-f541-8bea-52fc-3e187bd8e65f.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadInt64 method" Url="html/25da8afc-85f0-7323-cb4c-cb35f137add0.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadRawBytes method" Url="html/ceab139e-eca2-9ea8-9755-16c24400b59b.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadSByte method" Url="html/d62a9fff-f98f-8edf-fa8f-b03f52bda6c1.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadSingle method" Url="html/c9654741-0225-48f8-e9d8-75ccc332e588.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadSqlDateTime method" Url="html/6e7eaae4-e7a0-8254-068e-271be85cfa07.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadString method" Url="html/201552ef-4ce6-c229-b88d-da298fdf6b83.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadUByte method" Url="html/6687a7f4-53a1-0837-c251-f424262f3040.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadUInt16 method" Url="html/14426d10-5679-395b-3954-e340a465128a.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadUInt32 method" Url="html/e4431f4b-463e-7b5a-9933-223c364a0397.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ReadUInt64 method" Url="html/0e7a8462-0d75-3d0c-7203-579f46b9765a.htm" />
<HelpKINode Title="DryadLinqBinaryReader.ToString method" Url="html/74d1e42c-3b08-ea09-0b8b-c841914deab0.htm" />
<HelpKINode Title="DryadLinqBinaryWriter class">
<HelpKINode Title="DryadLinqBinaryWriter Class" Url="html/46c3c8f6-eac2-96d5-3ff0-d837669e9557.htm" />
<HelpKINode Title="about DryadLinqBinaryWriter class" Url="html/46c3c8f6-eac2-96d5-3ff0-d837669e9557.htm" />
<HelpKINode Title="methods" Url="html/1ba7bd47-27c9-8c6f-b5fb-54fdfb0b382a.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqBinaryWriter.ToString method" Url="html/8b8a247b-5e60-0750-b2e2-7de2d3ed69ee.htm" />
<HelpKINode Title="DryadLinqBinaryWriter.Write method" Url="html/a520e94d-0d05-1c66-4b54-06b43eac5735.htm" />
<HelpKINode Title="DryadLinqBinaryWriter.WriteBytes method" Url="html/e865381e-1e90-4f47-894b-6304d0028ef0.htm" />
<HelpKINode Title="DryadLinqBinaryWriter.WriteChars method" Url="html/21fec768-ab9c-536d-b901-9fbe1ab4b958.htm" />
<HelpKINode Title="DryadLinqBinaryWriter.WriteCompact method" Url="html/39ca1745-5c7e-3a08-8aa3-ba34af15e044.htm" />
<HelpKINode Title="DryadLinqBinaryWriter.WriteRawBytes method" Url="html/b1ad85ba-1fa8-77de-a82a-c04f1436060d.htm" />
<HelpKINode Title="DryadLinqCluster interface">
<HelpKINode Title="DryadLinqCluster Interface" Url="html/65be1ae5-77ef-6de4-cd1f-586d32aeb383.htm" />
<HelpKINode Title="about DryadLinqCluster interface" Url="html/65be1ae5-77ef-6de4-cd1f-586d32aeb383.htm" />
<HelpKINode Title="methods" Url="html/f8778722-6751-02a4-98f6-36825c384fd7.htm" />
<HelpKINode Title="properties" Url="html/2c8b1ff4-5681-5ffc-451d-2445a2177a8f.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqCluster.Client method" Url="html/7f734680-4cdf-d557-8034-45cff61afcbc.htm" />
<HelpKINode Title="DryadLinqCluster.DfsClient property" Url="html/bca2414d-9eb5-0563-8c12-58b6c58effd0.htm" />
<HelpKINode Title="DryadLinqCluster.HeadNode property" Url="html/20b0ceec-2c28-4a0c-f876-d10e8bef2c80.htm" />
<HelpKINode Title="DryadLinqCluster.Kind property" Url="html/615c02e9-bed8-c196-6e0a-7db0f9bd5966.htm" />
<HelpKINode Title="DryadLinqCluster.MakeDefaultUri method" Url="html/a6795b03-3dc7-3b8e-96af-20c0bf78461a.htm" />
<HelpKINode Title="DryadLinqContext class">
<HelpKINode Title="DryadLinqContext Class" Url="html/093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" />
<HelpKINode Title="about DryadLinqContext class" Url="html/093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" />
<HelpKINode Title="constructor" Url="html/93cf83b3-2042-bd63-c168-e4ef7f7994bc.htm" />
<HelpKINode Title="methods" Url="html/0d63a0c3-846a-e70d-6184-23387d3a9160.htm" />
<HelpKINode Title="properties" Url="html/ab8e84a0-8f4c-1d6b-a30a-c7ff0d76094b.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqContext.AzureAccountKey method" Url="html/2d28ac74-38d0-f39d-2a5b-879b8089889b.htm" />
<HelpKINode Title="DryadLinqContext.ClientVersion method" Url="html/c441f14e-35fd-3f66-3e98-95bba06f8461.htm" />
<HelpKINode Title="DryadLinqContext.CompileForVertexDebugging property" Url="html/06266f74-a819-017c-e03f-0f9761a28c52.htm" />
<HelpKINode Title="DryadLinqContext.DebugBreak property" Url="html/0bc5d95a-ef00-1073-ac66-8aa04e76bea4.htm" />
<HelpKINode Title="DryadLinqContext.Dispose method" Url="html/adbb7cea-3cd7-a024-d14b-35fc87b257a7.htm" />
<HelpKINode Title="DryadLinqContext.DryadHomeDirectory property" Url="html/1a3367ed-b951-d562-fbbc-4da581fb22ff.htm" />
<HelpKINode Title="DryadLinqContext.DryadLinqContext constructor" Url="html/93cf83b3-2042-bd63-c168-e4ef7f7994bc.htm" />
<HelpKINode Title="DryadLinqContext.EnableMultiThreadingInVertex property" Url="html/e5330d19-786b-ff5d-45d5-63906af83283.htm" />
<HelpKINode Title="DryadLinqContext.EnableSpeculativeDuplication property" Url="html/446c7fd3-88cd-80be-dc09-2e6a58cc0653.htm" />
<HelpKINode Title="DryadLinqContext.Equals method" Url="html/13cce920-2cb3-0614-4d48-34257614f24f.htm" />
<HelpKINode Title="DryadLinqContext.ExecutorKind property" Url="html/2deb1aaa-bfdc-353f-0c97-a8adbb809785.htm" />
<HelpKINode Title="DryadLinqContext.ForceGC property" Url="html/39e61761-eb29-06d9-fb5e-ca83550789ad.htm" />
<HelpKINode Title="DryadLinqContext.FromEnumerable(Of T) method" Url="html/3f22686d-c67f-2db6-f48b-73e16e30652b.htm" />
<HelpKINode Title="DryadLinqContext.FromEnumerable&lt;T&gt; method" Url="html/3f22686d-c67f-2db6-f48b-73e16e30652b.htm" />
<HelpKINode Title="DryadLinqContext.FromStore method" Url="html/bb6433fa-fa92-45b8-b706-1ac9fc37d063.htm" />
<HelpKINode Title="DryadLinqContext.GraphManagerNode property" Url="html/248076fc-57c2-c48c-d06a-c9e7bc3c08f9.htm" />
<HelpKINode Title="DryadLinqContext.HeadNode property" Url="html/21b0689d-8e56-2eec-1ee9-f466c31ba722.htm" />
<HelpKINode Title="DryadLinqContext.IntermediateDataCompressionScheme property" Url="html/cae4c54e-1f13-c9b9-2c72-935d9df74655.htm" />
<HelpKINode Title="DryadLinqContext.JobEnvironmentVariables property" Url="html/60213299-6472-65f7-8298-246f575f4519.htm" />
<HelpKINode Title="DryadLinqContext.JobFriendlyName property" Url="html/ba86aa92-5fe3-fac7-c21c-a5a381b27eb3.htm" />
<HelpKINode Title="DryadLinqContext.JobMaxNodes property" Url="html/a09a1cc0-3e1c-6484-eee1-abf6f43e8830.htm" />
<HelpKINode Title="DryadLinqContext.JobMinNodes property" Url="html/9c6a16ea-f074-0481-246b-4a8b93acd4a6.htm" />
<HelpKINode Title="DryadLinqContext.JobPassword property" Url="html/d94766a9-385e-6972-0d01-e0ad496422d3.htm" />
<HelpKINode Title="DryadLinqContext.JobRuntimeLimit property" Url="html/abece889-c5a1-aa62-d2c6-6e371273a12e.htm" />
<HelpKINode Title="DryadLinqContext.JobUsername property" Url="html/024262a5-8d35-80f8-1b76-7a6242ad400b.htm" />
<HelpKINode Title="DryadLinqContext.LocalDebug property" Url="html/bb832ac9-26e2-8dcf-6e10-da1f43571fc8.htm" />
<HelpKINode Title="DryadLinqContext.LocalExecution property" Url="html/f49487bb-3b0f-4054-0c17-ffdca967af5e.htm" />
<HelpKINode Title="DryadLinqContext.MatchClientNetFrameworkVersion property" Url="html/646b413a-cfac-0795-0766-86606d8a5410.htm" />
<HelpKINode Title="DryadLinqContext.NodeGroup property" Url="html/3bcf5415-69d6-0f64-fa4f-fa1ba7cade31.htm" />
<HelpKINode Title="DryadLinqContext.OutputDataCompressionScheme property" Url="html/1b4bb2db-3cb5-2bb3-22b7-d0d1f24eb7a6.htm" />
<HelpKINode Title="DryadLinqContext.PartitionUncPath property" Url="html/e2bc33c7-d205-23d9-e8bc-11f02dfae406.htm" />
<HelpKINode Title="DryadLinqContext.PeloponneseHomeDirectory property" Url="html/9293e769-1a4e-37c1-3236-ef5c533e3e00.htm" />
<HelpKINode Title="DryadLinqContext.PlatformKind property" Url="html/bb90c987-f871-d38d-aced-5665dfb21853.htm" />
<HelpKINode Title="DryadLinqContext.RegisterAzureAccount method" Url="html/17d622f1-6799-aeab-3637-9d66a4d79f0b.htm" />
<HelpKINode Title="DryadLinqContext.ResourcesToAdd property" Url="html/e25f71a6-3fa2-ac4f-bd57-1edb3da4c44e.htm" />
<HelpKINode Title="DryadLinqContext.ResourcesToRemove property" Url="html/b21ce425-bc26-fe1e-cd75-dee611a38fda.htm" />
<HelpKINode Title="DryadLinqContext.RuntimeTraceLevel property" Url="html/b0be9bd4-afbe-4239-4dbb-6a5405eeb1c1.htm" />
<HelpKINode Title="DryadLinqContext.SelectOrderPreserving property" Url="html/17d9d840-e581-26d0-9aaf-16ca5687adda.htm" />
<HelpKINode Title="DryadLinqException class">
<HelpKINode Title="DryadLinqException Class" Url="html/692e14c6-46ed-baaf-6b0f-b36cb74fe616.htm" />
<HelpKINode Title="about DryadLinqException class" Url="html/692e14c6-46ed-baaf-6b0f-b36cb74fe616.htm" />
<HelpKINode Title="constructor" Url="html/3ae48862-5298-892f-b8fb-33cbc99551da.htm" />
<HelpKINode Title="events" Url="html/77634612-83a1-5a40-7973-0a7a229e468d.htm" />
<HelpKINode Title="methods" Url="html/0d08006d-22e5-4a13-1882-0209adfb201b.htm" />
<HelpKINode Title="properties" Url="html/7f1a363f-43b1-26c1-963c-7702593b2615.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqException.DryadLinqException constructor" Url="html/3ae48862-5298-892f-b8fb-33cbc99551da.htm" />
<HelpKINode Title="DryadLinqException.ErrorCode property" Url="html/56710010-4bb7-345f-c29b-7eeb00164b0e.htm" />
<HelpKINode Title="DryadLinqException.GetObjectData method" Url="html/677e55a4-eaa4-2887-7257-555abf78300e.htm" />
<HelpKINode Title="DryadLinqExtension class">
<HelpKINode Title="DryadLinqExtension Class" Url="html/d83d6168-067a-d431-aaf5-3d9515eff360.htm" />
<HelpKINode Title="about DryadLinqExtension class" Url="html/d83d6168-067a-d431-aaf5-3d9515eff360.htm" />
<HelpKINode Title="methods" Url="html/c52687c7-a7dd-36fc-2e87-b01f8d8fb652.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqExtension.BroadCast method" Url="html/cc46bb36-e5ca-8273-a411-4f6b54885a8b.htm" />
<HelpKINode Title="DryadLinqExtension.CheckOrderBy(Of TSource, TKey) method" Url="html/895403fc-6f72-5cdc-76c0-ec7fdd32d923.htm" />
<HelpKINode Title="DryadLinqExtension.CheckOrderBy&lt;TSource, TKey&gt; method" Url="html/895403fc-6f72-5cdc-76c0-ec7fdd32d923.htm" />
<HelpKINode Title="DryadLinqExtension.CrossProduct(Of T1, T2, T3) method" Url="html/d5302869-185b-30a0-e61a-0b95888c6be9.htm" />
<HelpKINode Title="DryadLinqExtension.CrossProduct&lt;T1, T2, T3&gt; method" Url="html/d5302869-185b-30a0-e61a-0b95888c6be9.htm" />
<HelpKINode Title="DryadLinqExtension.DoWhile method" Url="html/e453d0ea-ad38-4d2b-20e0-6d48fb35e1b5.htm" />
<HelpKINode Title="DryadLinqExtension.MapReduce(Of TSource, TMap, TKey, TResult) method" Url="html/6613acc6-d94d-28ed-f5ce-28ad5967f7f0.htm" />
<HelpKINode Title="DryadLinqExtension.MapReduce&lt;TSource, TMap, TKey, TResult&gt; method" Url="html/6613acc6-d94d-28ed-f5ce-28ad5967f7f0.htm" />
<HelpKINode Title="DryadLinqJobInfo class">
<HelpKINode Title="DryadLinqJobInfo Class" Url="html/1286706e-b13a-d4da-31b6-a8e9095728c7.htm" />
<HelpKINode Title="about DryadLinqJobInfo class" Url="html/1286706e-b13a-d4da-31b6-a8e9095728c7.htm" />
<HelpKINode Title="methods" Url="html/a1383e04-1dc0-9ec0-9699-d7532bc3fe18.htm" />
<HelpKINode Title="properties" Url="html/06fee6ad-aae4-3914-38a5-269ea8886d4a.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqJobInfo.CancelJob method" Url="html/da218c9d-8317-6573-83b6-ac6c2264c47e.htm" />
<HelpKINode Title="DryadLinqJobInfo.JobIds property" Url="html/6ead0e05-329b-6672-cf9b-b13587e53520.htm" />
<HelpKINode Title="DryadLinqJobInfo.Wait method" Url="html/7ffb4590-0ee6-b22c-d148-d971fb69f7c8.htm" />
<HelpKINode Title="DryadLinqLog class">
<HelpKINode Title="DryadLinqLog Class" Url="html/85ce5a97-d2bb-bd50-ca58-f017d3769b7c.htm" />
<HelpKINode Title="about DryadLinqLog class" Url="html/85ce5a97-d2bb-bd50-ca58-f017d3769b7c.htm" />
<HelpKINode Title="fields" Url="html/a95d75cb-8a35-9b13-14a4-ad132a7215e0.htm" />
<HelpKINode Title="methods" Url="html/540e37fb-9c0d-9095-78c7-778e6938db6d.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqLog.AddCritical method" Url="html/fb0017d4-2002-13a0-845c-9c86972f6404.htm" />
<HelpKINode Title="DryadLinqLog.AddError method" Url="html/6d667751-03f2-3777-378f-dc995f109148.htm" />
<HelpKINode Title="DryadLinqLog.AddInfo method" Url="html/36d5998d-a061-1d6e-c67a-3bc77cf7a1ed.htm" />
<HelpKINode Title="DryadLinqLog.AddVerbose method" Url="html/f8a22de5-0cb8-e869-23e3-4c8053897b46.htm" />
<HelpKINode Title="DryadLinqLog.AddWarning method" Url="html/a78f10bf-2daf-79ab-cb29-8319316d39f7.htm" />
<HelpKINode Title="DryadLinqLog.Level field" Url="html/185c1846-bd97-af24-9a74-6b5679232636.htm" />
<HelpKINode Title="DryadLinqMetaData class">
<HelpKINode Title="DryadLinqMetaData Class" Url="html/5e3ae825-91af-0ff7-6ae4-f98f18bd6e58.htm" />
<HelpKINode Title="about DryadLinqMetaData class" Url="html/5e3ae825-91af-0ff7-6ae4-f98f18bd6e58.htm" />
<HelpKINode Title="methods" Url="html/44eb96bb-a236-19b9-5ff3-aff6a5f2728e.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqQueryable class">
<HelpKINode Title="DryadLinqQueryable Class" Url="html/6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" />
<HelpKINode Title="about DryadLinqQueryable class" Url="html/6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" />
<HelpKINode Title="methods" Url="html/a09bbd62-c781-673f-1297-a71a44f264bf.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqQueryable.Aggregate method" Url="html/c0f6970e-9d7d-0f05-99ec-aea86dd3901d.htm" />
<HelpKINode Title="DryadLinqQueryable.AggregateAsQuery method" Url="html/6cd1fdb7-0be2-f40e-96a7-266629debe2e.htm" />
<HelpKINode Title="DryadLinqQueryable.AllAsQuery(Of TSource) method" Url="html/e15e3251-3443-58ca-7e56-f1a9abf0e18e.htm" />
<HelpKINode Title="DryadLinqQueryable.AllAsQuery&lt;TSource&gt; method" Url="html/e15e3251-3443-58ca-7e56-f1a9abf0e18e.htm" />
<HelpKINode Title="DryadLinqQueryable.AnyAsQuery method" Url="html/65e4aa00-0ceb-92d0-9f0f-653938c30ace.htm" />
<HelpKINode Title="DryadLinqQueryable.Apply method" Url="html/b3becad6-86fb-857e-5ee5-295a2d23b663.htm" />
<HelpKINode Title="DryadLinqQueryable.ApplyPerPartition method" Url="html/072ffb1e-75fa-7aa1-fb37-b34393ddcab4.htm" />
<HelpKINode Title="DryadLinqQueryable.ApplyWithPartitionIndex(Of T1, T2) method" Url="html/a88c1234-7c0c-d694-11e5-b47c155fdc94.htm" />
<HelpKINode Title="DryadLinqQueryable.ApplyWithPartitionIndex&lt;T1, T2&gt; method" Url="html/a88c1234-7c0c-d694-11e5-b47c155fdc94.htm" />
<HelpKINode Title="DryadLinqQueryable.AssumeHashPartition method" Url="html/0fe358e3-5219-60c4-1a15-c77bd51338f7.htm" />
<HelpKINode Title="DryadLinqQueryable.AssumeOrderBy method" Url="html/98cee862-bd46-4244-cdbe-0783a9474bd5.htm" />
<HelpKINode Title="DryadLinqQueryable.AssumeRangePartition method" Url="html/05317da6-b361-379e-397d-e34d85c6856d.htm" />
<HelpKINode Title="DryadLinqQueryable.AverageAsQuery method" Url="html/1b4e9327-9b61-e353-0051-d36bb399ce3e.htm" />
<HelpKINode Title="DryadLinqQueryable.ContainsAsQuery method" Url="html/79406ffb-6664-636a-bd34-d80965d38172.htm" />
<HelpKINode Title="DryadLinqQueryable.CountAsQuery method" Url="html/b26b8681-c9eb-e216-6c54-d34454d3dd80.htm" />
<HelpKINode Title="DryadLinqQueryable.DoWhile(Of T) method" Url="html/d0d82a69-b3db-d19d-8def-edc5457aca2e.htm" />
<HelpKINode Title="DryadLinqQueryable.DoWhile&lt;T&gt; method" Url="html/d0d82a69-b3db-d19d-8def-edc5457aca2e.htm" />
<HelpKINode Title="DryadLinqQueryable.FirstAsQuery method" Url="html/9af8461f-bf9b-b3fe-d9f0-0e03dffb3a85.htm" />
<HelpKINode Title="DryadLinqQueryable.Fork method" Url="html/7f3c4d7e-cc6a-3e04-2d17-ad817bc05ccb.htm" />
<HelpKINode Title="DryadLinqQueryable.HashPartition method" Url="html/1d3ec0f6-3549-a859-323d-eaa072b59745.htm" />
<HelpKINode Title="DryadLinqQueryable.LastAsQuery method" Url="html/5b19d6a4-77d1-1e89-dfc2-d28d904f0856.htm" />
<HelpKINode Title="DryadLinqQueryable.LongCountAsQuery method" Url="html/6bc2eb5c-4e5c-228f-d4e6-420163ae5b5d.htm" />
<HelpKINode Title="DryadLinqQueryable.LongSelect(Of TSource, TResult) method" Url="html/4479c8c4-d7b5-0a9a-f6ad-740afffa2969.htm" />
<HelpKINode Title="DryadLinqQueryable.LongSelect&lt;TSource, TResult&gt; method" Url="html/4479c8c4-d7b5-0a9a-f6ad-740afffa2969.htm" />
<HelpKINode Title="DryadLinqQueryable.LongSelectMany method" Url="html/241043ae-a90b-3cca-80f6-71bc570453fd.htm" />
<HelpKINode Title="DryadLinqQueryable.LongSkipWhile(Of TSource) method" Url="html/c5b7a8bf-193f-1e84-706e-a9ffc74d41a3.htm" />
<HelpKINode Title="DryadLinqQueryable.LongSkipWhile&lt;TSource&gt; method" Url="html/c5b7a8bf-193f-1e84-706e-a9ffc74d41a3.htm" />
<HelpKINode Title="DryadLinqQueryable.LongTakeWhile(Of TSource) method" Url="html/1361c8c8-c04b-e5f2-6112-9f62b5af8fcb.htm" />
<HelpKINode Title="DryadLinqQueryable.LongTakeWhile&lt;TSource&gt; method" Url="html/1361c8c8-c04b-e5f2-6112-9f62b5af8fcb.htm" />
<HelpKINode Title="DryadLinqQueryable.LongWhere(Of TSource) method" Url="html/a9e6f3c2-457f-4d7d-af58-7a4827a47f92.htm" />
<HelpKINode Title="DryadLinqQueryable.LongWhere&lt;TSource&gt; method" Url="html/a9e6f3c2-457f-4d7d-af58-7a4827a47f92.htm" />
<HelpKINode Title="DryadLinqQueryable.MaxAsQuery method" Url="html/f4b36863-6a66-5778-2fae-56e7eac50834.htm" />
<HelpKINode Title="DryadLinqQueryable.MinAsQuery method" Url="html/9d6119ab-121a-148e-3170-b5b252aaef07.htm" />
<HelpKINode Title="DryadLinqQueryable.RangePartition method" Url="html/f90db211-91a6-9160-f0b1-f7b5d6267e24.htm" />
<HelpKINode Title="DryadLinqQueryable.SequenceEqualAsQuery method" Url="html/1ff40fab-862b-4871-b578-5a8c908f1294.htm" />
<HelpKINode Title="DryadLinqQueryable.SingleAsQuery method" Url="html/f8e0a412-97bc-99bb-d919-03e404d236b8.htm" />
<HelpKINode Title="DryadLinqQueryable.SlidingWindow(Of T1, T2) method" Url="html/cf28149d-3737-b5e6-0fdb-8ad0d0a6a31b.htm" />
<HelpKINode Title="DryadLinqQueryable.SlidingWindow&lt;T1, T2&gt; method" Url="html/cf28149d-3737-b5e6-0fdb-8ad0d0a6a31b.htm" />
<HelpKINode Title="DryadLinqQueryable.Submit method" Url="html/87ba860b-6c3b-dafe-6d00-0f2a05636b0c.htm" />
<HelpKINode Title="DryadLinqQueryable.SubmitAndWait method" Url="html/afeb2773-3e8d-61d5-52be-00d2323d69c2.htm" />
<HelpKINode Title="DryadLinqQueryable.SumAsQuery method" Url="html/f7353d8f-b53e-4485-3a32-a47d26df83b2.htm" />
<HelpKINode Title="DryadLinqQueryable.ToStore method" Url="html/dfd04264-0973-a546-1ef7-4971c13a4d71.htm" />
<HelpKINode Title="DryadLinqStreamInfo class">
<HelpKINode Title="DryadLinqStreamInfo Class" Url="html/562bb8ee-21e0-0f88-c57c-64a244256648.htm" />
<HelpKINode Title="about DryadLinqStreamInfo class" Url="html/562bb8ee-21e0-0f88-c57c-64a244256648.htm" />
<HelpKINode Title="constructor" Url="html/6a718b44-1263-26e8-e829-1655a3522217.htm" />
<HelpKINode Title="methods" Url="html/ae015e95-d81a-201e-6de7-510487303ba6.htm" />
<HelpKINode Title="properties" Url="html/95c22eeb-6433-b0f9-9157-956dfd5a95c4.htm" />
</HelpKINode>
<HelpKINode Title="DryadLinqStreamInfo.DataSize property" Url="html/da53c4f0-d5ab-702f-e073-ec9b6ea2f82b.htm" />
<HelpKINode Title="DryadLinqStreamInfo.DryadLinqStreamInfo constructor" Url="html/6a718b44-1263-26e8-e829-1655a3522217.htm" />
<HelpKINode Title="DryadLinqStreamInfo.PartitionCount property" Url="html/7e6c6d5f-35f2-347f-167b-f0ca16f56723.htm" />
<HelpKINode Title="Egress method" Url="html/76dc89db-d2f7-c6b1-ee72-231a3e1881fc.htm" />
<HelpKINode Title="ElementType method" Url="html/b2f8d418-599c-d187-da9e-38de1cb3b178.htm" />
<HelpKINode Title="EnableMultiThreadingInVertex property" Url="html/e5330d19-786b-ff5d-45d5-63906af83283.htm" />
<HelpKINode Title="EnableSpeculativeDuplication property" Url="html/446c7fd3-88cd-80be-dc09-2e6a58cc0653.htm" />
<HelpKINode Title="Equality operator">
<HelpKINode Title="LineRecord.Equality Operator " Url="html/85b0619b-7cb3-8abb-41a0-e721890b4b4b.htm" />
<HelpKINode Title="Pair(T1, T2).Equality Operator " Url="html/eb7302d8-bade-88ab-7153-3e08f8902454.htm" />
</HelpKINode>
<HelpKINode Title="Equals method">
<HelpKINode Title="DryadLinqContext.Equals Method " Url="html/13cce920-2cb3-0614-4d48-34257614f24f.htm" />
<HelpKINode Title="ForkTuple(T1, T2).Equals Method " Url="html/7ce32f0b-e400-2a96-52b0-65238b7eb283.htm" />
<HelpKINode Title="ForkTuple(T1, T2, T3).Equals Method " Url="html/7b13d2e9-7ea4-d4aa-20da-c76cb5dfa135.htm" />
<HelpKINode Title="ForkValue(T).Equals Method " Url="html/277744cf-bbc7-5ee4-c3b2-7f4052963441.htm" />
<HelpKINode Title="LineRecord.Equals Method " Url="html/6bb38453-9d1d-3ec5-507f-cf38853cffed.htm" />
<HelpKINode Title="Pair(T1, T2).Equals Method " Url="html/5e55be13-9e9b-2600-32d3-ba9ca745aa61.htm" />
</HelpKINode>
<HelpKINode Title="Error enumeration member" Url="html/7f48283a-3fd5-7bf1-1b43-e0164f893f54.htm" />
<HelpKINode Title="ErrorCode property" Url="html/56710010-4bb7-345f-c29b-7eeb00164b0e.htm" />
<HelpKINode Title="ExecutorKind enumeration" Url="html/e652bfe9-c973-2744-87c1-e63cf9db4f56.htm" />
<HelpKINode Title="ExecutorKind property" Url="html/2deb1aaa-bfdc-353f-0c97-a8adbb809785.htm" />
<HelpKINode Title="Expression property" Url="html/3406300d-cd1d-f797-61e3-7d00b2abd387.htm" />
<HelpKINode Title="FinalReduce method">
<HelpKINode Title="GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult).FinalReduce Method " Url="html/982d658a-3590-02e2-e86c-5d1603e2ff7b.htm" />
<HelpKINode Title="IDecomposable(TSource, TAccumulate, TResult).FinalReduce Method " Url="html/a3a06fa4-5372-405f-85b2-947afeb79561.htm" />
</HelpKINode>
<HelpKINode Title="First property">
<HelpKINode Title="ForkTuple(T1, T2).First Property " Url="html/6b32278a-6d75-3882-83b0-0e33a98fb7c8.htm" />
<HelpKINode Title="ForkTuple(T1, T2, T3).First Property " Url="html/3ede29b7-a419-b762-7c5f-f617c3ad4ea0.htm" />
<HelpKINode Title="IMultiQueryable(T1, T2).First Property " Url="html/fdba9172-7ef3-7e37-2e6e-bb5fe43cd4b5.htm" />
<HelpKINode Title="IMultiQueryable(T1, T2, T3).First Property " Url="html/41619f5b-5228-e834-205f-f4e03e769d15.htm" />
</HelpKINode>
<HelpKINode Title="FirstAsQuery method" Url="html/9af8461f-bf9b-b3fe-d9f0-0e03dffb3a85.htm" />
<HelpKINode Title="ForceGC property" Url="html/39e61761-eb29-06d9-fb5e-ca83550789ad.htm" />
<HelpKINode Title="Fork method" Url="html/7f3c4d7e-cc6a-3e04-2d17-ad817bc05ccb.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2) structure">
<HelpKINode Title="ForkTuple(T1, T2) Structure" Url="html/28af6b37-22b3-448f-cf9f-ea15b5aa90d6.htm" />
<HelpKINode Title="about ForkTuple(Of T1, T2) structure" Url="html/28af6b37-22b3-448f-cf9f-ea15b5aa90d6.htm" />
<HelpKINode Title="constructor" Url="html/d0234465-a912-65ea-e636-04db408de8f1.htm" />
<HelpKINode Title="methods" Url="html/c1a6a21b-2155-acfa-4bd7-1243fe9fba30.htm" />
<HelpKINode Title="properties" Url="html/76957065-5630-1667-884c-3ce88290abd8.htm" />
</HelpKINode>
<HelpKINode Title="ForkTuple(Of T1, T2).Equals method" Url="html/7ce32f0b-e400-2a96-52b0-65238b7eb283.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2).First property" Url="html/6b32278a-6d75-3882-83b0-0e33a98fb7c8.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2).ForkTuple constructor" Url="html/d0234465-a912-65ea-e636-04db408de8f1.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2).GetHashCode method" Url="html/e33687f3-591a-54e8-2a3d-bd80ccac7e76.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2).HasFirst property" Url="html/c93f543e-84c2-3fe0-95c2-0e2b81b2e1e2.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2).HasSecond property" Url="html/d33e8f73-7da3-dbdd-4617-4ea75998fdab.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2).Second property" Url="html/e91d270e-8169-d4e6-5c47-e01fddea6886.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2, T3) structure">
<HelpKINode Title="ForkTuple(T1, T2, T3) Structure" Url="html/07206258-2e2e-6aa3-4c79-0c0674875849.htm" />
<HelpKINode Title="about ForkTuple(Of T1, T2, T3) structure" Url="html/07206258-2e2e-6aa3-4c79-0c0674875849.htm" />
<HelpKINode Title="constructor" Url="html/83e9427c-d320-6f1e-69a7-07bf990f5552.htm" />
<HelpKINode Title="methods" Url="html/35cb81e7-7eae-c2c8-5bda-4c84f96bf377.htm" />
<HelpKINode Title="properties" Url="html/aed82465-569c-2eaf-b541-2e9cb274c89a.htm" />
</HelpKINode>
<HelpKINode Title="ForkTuple(Of T1, T2, T3).Equals method" Url="html/7b13d2e9-7ea4-d4aa-20da-c76cb5dfa135.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2, T3).First property" Url="html/3ede29b7-a419-b762-7c5f-f617c3ad4ea0.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2, T3).ForkTuple constructor" Url="html/83e9427c-d320-6f1e-69a7-07bf990f5552.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2, T3).GetHashCode method" Url="html/56301ca8-b00b-32b5-1da3-bba21860db99.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2, T3).HasFirst property" Url="html/4e4b1e20-e630-adfc-12f4-e999aa73e5d3.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2, T3).HasSecond property" Url="html/9258db36-5e75-9efc-e607-ef6f5ba67a4a.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2, T3).HasThird property" Url="html/fdcf7716-268c-05d8-c969-99fcc6611106.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2, T3).Second property" Url="html/86d97af6-9c8c-ccbb-4a2b-386657c1a9fe.htm" />
<HelpKINode Title="ForkTuple(Of T1, T2, T3).Third property" Url="html/c90df8c7-3a30-7c79-ce29-c37b9def4567.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt; structure">
<HelpKINode Title="ForkTuple(T1, T2, T3) Structure" Url="html/07206258-2e2e-6aa3-4c79-0c0674875849.htm" />
<HelpKINode Title="about ForkTuple&lt;T1, T2, T3&gt; structure" Url="html/07206258-2e2e-6aa3-4c79-0c0674875849.htm" />
<HelpKINode Title="constructor" Url="html/83e9427c-d320-6f1e-69a7-07bf990f5552.htm" />
<HelpKINode Title="methods" Url="html/35cb81e7-7eae-c2c8-5bda-4c84f96bf377.htm" />
<HelpKINode Title="properties" Url="html/aed82465-569c-2eaf-b541-2e9cb274c89a.htm" />
</HelpKINode>
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt;.Equals method" Url="html/7b13d2e9-7ea4-d4aa-20da-c76cb5dfa135.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt;.First property" Url="html/3ede29b7-a419-b762-7c5f-f617c3ad4ea0.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt;.ForkTuple constructor" Url="html/83e9427c-d320-6f1e-69a7-07bf990f5552.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt;.GetHashCode method" Url="html/56301ca8-b00b-32b5-1da3-bba21860db99.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt;.HasFirst property" Url="html/4e4b1e20-e630-adfc-12f4-e999aa73e5d3.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt;.HasSecond property" Url="html/9258db36-5e75-9efc-e607-ef6f5ba67a4a.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt;.HasThird property" Url="html/fdcf7716-268c-05d8-c969-99fcc6611106.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt;.Second property" Url="html/86d97af6-9c8c-ccbb-4a2b-386657c1a9fe.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2, T3&gt;.Third property" Url="html/c90df8c7-3a30-7c79-ce29-c37b9def4567.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2&gt; structure">
<HelpKINode Title="ForkTuple(T1, T2) Structure" Url="html/28af6b37-22b3-448f-cf9f-ea15b5aa90d6.htm" />
<HelpKINode Title="about ForkTuple&lt;T1, T2&gt; structure" Url="html/28af6b37-22b3-448f-cf9f-ea15b5aa90d6.htm" />
<HelpKINode Title="constructor" Url="html/d0234465-a912-65ea-e636-04db408de8f1.htm" />
<HelpKINode Title="methods" Url="html/c1a6a21b-2155-acfa-4bd7-1243fe9fba30.htm" />
<HelpKINode Title="properties" Url="html/76957065-5630-1667-884c-3ce88290abd8.htm" />
</HelpKINode>
<HelpKINode Title="ForkTuple&lt;T1, T2&gt;.Equals method" Url="html/7ce32f0b-e400-2a96-52b0-65238b7eb283.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2&gt;.First property" Url="html/6b32278a-6d75-3882-83b0-0e33a98fb7c8.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2&gt;.ForkTuple constructor" Url="html/d0234465-a912-65ea-e636-04db408de8f1.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2&gt;.GetHashCode method" Url="html/e33687f3-591a-54e8-2a3d-bd80ccac7e76.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2&gt;.HasFirst property" Url="html/c93f543e-84c2-3fe0-95c2-0e2b81b2e1e2.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2&gt;.HasSecond property" Url="html/d33e8f73-7da3-dbdd-4617-4ea75998fdab.htm" />
<HelpKINode Title="ForkTuple&lt;T1, T2&gt;.Second property" Url="html/e91d270e-8169-d4e6-5c47-e01fddea6886.htm" />
<HelpKINode Title="ForkValue(Of T) structure">
<HelpKINode Title="ForkValue(T) Structure" Url="html/3d9c6034-3028-09ed-9ec6-6af9101c0f52.htm" />
<HelpKINode Title="about ForkValue(Of T) structure" Url="html/3d9c6034-3028-09ed-9ec6-6af9101c0f52.htm" />
<HelpKINode Title="constructor" Url="html/891a0064-76fe-27f2-836d-c59419bf7956.htm" />
<HelpKINode Title="methods" Url="html/2c7c3b94-2666-db95-15bd-37e0f37f68a9.htm" />
<HelpKINode Title="properties" Url="html/8f1173ea-7a80-f5d2-a86a-c9817ff59ba4.htm" />
</HelpKINode>
<HelpKINode Title="ForkValue(Of T).Equals method" Url="html/277744cf-bbc7-5ee4-c3b2-7f4052963441.htm" />
<HelpKINode Title="ForkValue(Of T).ForkValue constructor" Url="html/891a0064-76fe-27f2-836d-c59419bf7956.htm" />
<HelpKINode Title="ForkValue(Of T).GetHashCode method" Url="html/1418da77-2d3c-0a21-3c41-ba2ea3abb075.htm" />
<HelpKINode Title="ForkValue(Of T).HasValue property" Url="html/8ebdf81f-127f-f1d9-4eb8-1cab9ef04768.htm" />
<HelpKINode Title="ForkValue(Of T).Value property" Url="html/901dcf86-c65c-a976-7b3b-e334fc1d93cf.htm" />
<HelpKINode Title="ForkValue&lt;T&gt; structure">
<HelpKINode Title="ForkValue(T) Structure" Url="html/3d9c6034-3028-09ed-9ec6-6af9101c0f52.htm" />
<HelpKINode Title="about ForkValue&lt;T&gt; structure" Url="html/3d9c6034-3028-09ed-9ec6-6af9101c0f52.htm" />
<HelpKINode Title="constructor" Url="html/891a0064-76fe-27f2-836d-c59419bf7956.htm" />
<HelpKINode Title="methods" Url="html/2c7c3b94-2666-db95-15bd-37e0f37f68a9.htm" />
<HelpKINode Title="properties" Url="html/8f1173ea-7a80-f5d2-a86a-c9817ff59ba4.htm" />
</HelpKINode>
<HelpKINode Title="ForkValue&lt;T&gt;.Equals method" Url="html/277744cf-bbc7-5ee4-c3b2-7f4052963441.htm" />
<HelpKINode Title="ForkValue&lt;T&gt;.ForkValue constructor" Url="html/891a0064-76fe-27f2-836d-c59419bf7956.htm" />
<HelpKINode Title="ForkValue&lt;T&gt;.GetHashCode method" Url="html/1418da77-2d3c-0a21-3c41-ba2ea3abb075.htm" />
<HelpKINode Title="ForkValue&lt;T&gt;.HasValue property" Url="html/8ebdf81f-127f-f1d9-4eb8-1cab9ef04768.htm" />
<HelpKINode Title="ForkValue&lt;T&gt;.Value property" Url="html/901dcf86-c65c-a976-7b3b-e334fc1d93cf.htm" />
<HelpKINode Title="FromEnumerable(Of T) method" Url="html/3f22686d-c67f-2db6-f48b-73e16e30652b.htm" />
<HelpKINode Title="FromEnumerable&lt;T&gt; method" Url="html/3f22686d-c67f-2db6-f48b-73e16e30652b.htm" />
<HelpKINode Title="FromStore method" Url="html/bb6433fa-fa92-45b8-b706-1ac9fc37d063.htm" />
<HelpKINode Title="GenericAssociative(Of TAssoc, TAccumulate) class">
<HelpKINode Title="GenericAssociative(TAssoc, TAccumulate) Class" Url="html/a49d01fb-8518-8fe8-02b4-7fd06cec7ed4.htm" />
<HelpKINode Title="about GenericAssociative(Of TAssoc, TAccumulate) class" Url="html/a49d01fb-8518-8fe8-02b4-7fd06cec7ed4.htm" />
<HelpKINode Title="methods" Url="html/e025b172-58a2-5b6b-48c0-0c33ee321a3d.htm" />
</HelpKINode>
<HelpKINode Title="GenericAssociative(Of TAssoc, TAccumulate).RecursiveAccumulate method" Url="html/f8d20d20-bbec-a340-6200-48866b0ac7d0.htm" />
<HelpKINode Title="GenericAssociative(Of TAssoc, TAccumulate).Seed method" Url="html/97df1d63-3677-417d-8007-20899312a1a3.htm" />
<HelpKINode Title="GenericAssociative&lt;TAssoc, TAccumulate&gt; class">
<HelpKINode Title="GenericAssociative(TAssoc, TAccumulate) Class" Url="html/a49d01fb-8518-8fe8-02b4-7fd06cec7ed4.htm" />
<HelpKINode Title="about GenericAssociative&lt;TAssoc, TAccumulate&gt; class" Url="html/a49d01fb-8518-8fe8-02b4-7fd06cec7ed4.htm" />
<HelpKINode Title="methods" Url="html/e025b172-58a2-5b6b-48c0-0c33ee321a3d.htm" />
</HelpKINode>
<HelpKINode Title="GenericAssociative&lt;TAssoc, TAccumulate&gt;.RecursiveAccumulate method" Url="html/f8d20d20-bbec-a340-6200-48866b0ac7d0.htm" />
<HelpKINode Title="GenericAssociative&lt;TAssoc, TAccumulate&gt;.Seed method" Url="html/97df1d63-3677-417d-8007-20899312a1a3.htm" />
<HelpKINode Title="GenericDecomposable(Of TDecomposable, TSource, TAccumulate, TResult) class">
<HelpKINode Title="GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Class" Url="html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" />
<HelpKINode Title="about GenericDecomposable(Of TDecomposable, TSource, TAccumulate, TResult) class" Url="html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" />
<HelpKINode Title="methods" Url="html/09b7f762-48da-5a16-77e3-8b841c6f83ea.htm" />
</HelpKINode>
<HelpKINode Title="GenericDecomposable(Of TDecomposable, TSource, TAccumulate, TResult).Accumulate method" Url="html/ffa4b6ac-5e03-29aa-ec10-7aab8893edd2.htm" />
<HelpKINode Title="GenericDecomposable(Of TDecomposable, TSource, TAccumulate, TResult).FinalReduce method" Url="html/982d658a-3590-02e2-e86c-5d1603e2ff7b.htm" />
<HelpKINode Title="GenericDecomposable(Of TDecomposable, TSource, TAccumulate, TResult).Initialize method" Url="html/7ad863dd-2b05-4189-31b3-b8e3fe344c31.htm" />
<HelpKINode Title="GenericDecomposable(Of TDecomposable, TSource, TAccumulate, TResult).RecursiveAccumulate method" Url="html/032e436e-efdc-433f-654c-75ce93cdb5d2.htm" />
<HelpKINode Title="GenericDecomposable(Of TDecomposable, TSource, TAccumulate, TResult).Seed method" Url="html/3f7c6b9f-b02f-4152-9d67-ce663a9710f7.htm" />
<HelpKINode Title="GenericDecomposable&lt;TDecomposable, TSource, TAccumulate, TResult&gt; class">
<HelpKINode Title="GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Class" Url="html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" />
<HelpKINode Title="about GenericDecomposable&lt;TDecomposable, TSource, TAccumulate, TResult&gt; class" Url="html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" />
<HelpKINode Title="methods" Url="html/09b7f762-48da-5a16-77e3-8b841c6f83ea.htm" />
</HelpKINode>
<HelpKINode Title="GenericDecomposable&lt;TDecomposable, TSource, TAccumulate, TResult&gt;.Accumulate method" Url="html/ffa4b6ac-5e03-29aa-ec10-7aab8893edd2.htm" />
<HelpKINode Title="GenericDecomposable&lt;TDecomposable, TSource, TAccumulate, TResult&gt;.FinalReduce method" Url="html/982d658a-3590-02e2-e86c-5d1603e2ff7b.htm" />
<HelpKINode Title="GenericDecomposable&lt;TDecomposable, TSource, TAccumulate, TResult&gt;.Initialize method" Url="html/7ad863dd-2b05-4189-31b3-b8e3fe344c31.htm" />
<HelpKINode Title="GenericDecomposable&lt;TDecomposable, TSource, TAccumulate, TResult&gt;.RecursiveAccumulate method" Url="html/032e436e-efdc-433f-654c-75ce93cdb5d2.htm" />
<HelpKINode Title="GenericDecomposable&lt;TDecomposable, TSource, TAccumulate, TResult&gt;.Seed method" Url="html/3f7c6b9f-b02f-4152-9d67-ce663a9710f7.htm" />
<HelpKINode Title="GetHashCode method">
<HelpKINode Title="ForkTuple(T1, T2).GetHashCode Method " Url="html/e33687f3-591a-54e8-2a3d-bd80ccac7e76.htm" />
<HelpKINode Title="ForkTuple(T1, T2, T3).GetHashCode Method " Url="html/56301ca8-b00b-32b5-1da3-bba21860db99.htm" />
<HelpKINode Title="ForkValue(T).GetHashCode Method " Url="html/1418da77-2d3c-0a21-3c41-ba2ea3abb075.htm" />
<HelpKINode Title="LineRecord.GetHashCode Method " Url="html/b1f41ee4-8457-0b3d-4a50-692888f6d306.htm" />
<HelpKINode Title="Pair(T1, T2).GetHashCode Method " Url="html/6823bc5e-464f-8c0f-48e5-219730a0087e.htm" />
</HelpKINode>
<HelpKINode Title="GetMetaData method" Url="html/03212629-8351-bc14-0918-ef18541c60f6.htm" />
<HelpKINode Title="GetObjectData method" Url="html/677e55a4-eaa4-2887-7257-555abf78300e.htm" />
<HelpKINode Title="GetStreamInfo method" Url="html/e491d2f3-4406-ba06-33ac-287ada771687.htm" />
<HelpKINode Title="GetTemporaryStreamUri method" Url="html/893d5450-6706-1bac-214f-1be575dcb4a9.htm" />
<HelpKINode Title="GraphManagerNode property" Url="html/248076fc-57c2-c48c-d06a-c9e7bc3c08f9.htm" />
<HelpKINode Title="GreaterThan operator" Url="html/ed798443-81e0-6dcd-be4f-27eb558511a4.htm" />
<HelpKINode Title="Gzip enumeration member" Url="html/9266635e-c3ea-7e66-528b-f44b55a2daca.htm" />
<HelpKINode Title="HasFirst property">
<HelpKINode Title="ForkTuple(T1, T2).HasFirst Property " Url="html/c93f543e-84c2-3fe0-95c2-0e2b81b2e1e2.htm" />
<HelpKINode Title="ForkTuple(T1, T2, T3).HasFirst Property " Url="html/4e4b1e20-e630-adfc-12f4-e999aa73e5d3.htm" />
</HelpKINode>
<HelpKINode Title="HashPartition method" Url="html/1d3ec0f6-3549-a859-323d-eaa072b59745.htm" />
<HelpKINode Title="HasSecond property">
<HelpKINode Title="ForkTuple(T1, T2).HasSecond Property " Url="html/d33e8f73-7da3-dbdd-4617-4ea75998fdab.htm" />
<HelpKINode Title="ForkTuple(T1, T2, T3).HasSecond Property " Url="html/9258db36-5e75-9efc-e607-ef6f5ba67a4a.htm" />
</HelpKINode>
<HelpKINode Title="HasThird property" Url="html/fdcf7716-268c-05d8-c969-99fcc6611106.htm" />
<HelpKINode Title="HasValue property" Url="html/8ebdf81f-127f-f1d9-4eb8-1cab9ef04768.htm" />
<HelpKINode Title="HeadNode property">
<HelpKINode Title="DryadLinqCluster.HeadNode Property " Url="html/20b0ceec-2c28-4a0c-f876-d10e8bef2c80.htm" />
<HelpKINode Title="DryadLinqContext.HeadNode Property " Url="html/21b0689d-8e56-2eec-1ee9-f466c31ba722.htm" />
</HelpKINode>
<HelpKINode Title="IAssociative(Of TAccumulate) interface">
<HelpKINode Title="IAssociative(TAccumulate) Interface" Url="html/8ac439be-5f1e-cce5-eea2-11de7aa46929.htm" />
<HelpKINode Title="about IAssociative(Of TAccumulate) interface" Url="html/8ac439be-5f1e-cce5-eea2-11de7aa46929.htm" />
<HelpKINode Title="methods" Url="html/5a59b1a7-a6fe-8353-948c-6aadb3e190e0.htm" />
</HelpKINode>
<HelpKINode Title="IAssociative(Of TAccumulate).RecursiveAccumulate method" Url="html/262f7961-aa38-363a-4625-9557322dc386.htm" />
<HelpKINode Title="IAssociative(Of TAccumulate).Seed method" Url="html/5d92709d-0db3-49af-421e-4a66042819b0.htm" />
<HelpKINode Title="IAssociative&lt;TAccumulate&gt; interface">
<HelpKINode Title="IAssociative(TAccumulate) Interface" Url="html/8ac439be-5f1e-cce5-eea2-11de7aa46929.htm" />
<HelpKINode Title="about IAssociative&lt;TAccumulate&gt; interface" Url="html/8ac439be-5f1e-cce5-eea2-11de7aa46929.htm" />
<HelpKINode Title="methods" Url="html/5a59b1a7-a6fe-8353-948c-6aadb3e190e0.htm" />
</HelpKINode>
<HelpKINode Title="IAssociative&lt;TAccumulate&gt;.RecursiveAccumulate method" Url="html/262f7961-aa38-363a-4625-9557322dc386.htm" />
<HelpKINode Title="IAssociative&lt;TAccumulate&gt;.Seed method" Url="html/5d92709d-0db3-49af-421e-4a66042819b0.htm" />
<HelpKINode Title="IDecomposable(Of TSource, TAccumulate, TResult) interface">
<HelpKINode Title="IDecomposable(TSource, TAccumulate, TResult) Interface" Url="html/28f10369-ddd1-2090-d4e2-16e5c7b34795.htm" />
<HelpKINode Title="about IDecomposable(Of TSource, TAccumulate, TResult) interface" Url="html/28f10369-ddd1-2090-d4e2-16e5c7b34795.htm" />
<HelpKINode Title="methods" Url="html/3390d7bc-a985-7d93-b154-971bf1dfd33f.htm" />
</HelpKINode>
<HelpKINode Title="IDecomposable(Of TSource, TAccumulate, TResult).Accumulate method" Url="html/f7141b46-f316-6b6b-13dd-b38da64deda1.htm" />
<HelpKINode Title="IDecomposable(Of TSource, TAccumulate, TResult).FinalReduce method" Url="html/a3a06fa4-5372-405f-85b2-947afeb79561.htm" />
<HelpKINode Title="IDecomposable(Of TSource, TAccumulate, TResult).Initialize method" Url="html/a65ccdbb-51b0-b1a1-1e8d-ccfd30971385.htm" />
<HelpKINode Title="IDecomposable(Of TSource, TAccumulate, TResult).RecursiveAccumulate method" Url="html/507ffa9d-4bfa-1702-0a7f-918fd4a42345.htm" />
<HelpKINode Title="IDecomposable(Of TSource, TAccumulate, TResult).Seed method" Url="html/51aa8653-daf8-c05e-f659-99046cd343ed.htm" />
<HelpKINode Title="IDecomposable&lt;TSource, TAccumulate, TResult&gt; interface">
<HelpKINode Title="IDecomposable(TSource, TAccumulate, TResult) Interface" Url="html/28f10369-ddd1-2090-d4e2-16e5c7b34795.htm" />
<HelpKINode Title="about IDecomposable&lt;TSource, TAccumulate, TResult&gt; interface" Url="html/28f10369-ddd1-2090-d4e2-16e5c7b34795.htm" />
<HelpKINode Title="methods" Url="html/3390d7bc-a985-7d93-b154-971bf1dfd33f.htm" />
</HelpKINode>
<HelpKINode Title="IDecomposable&lt;TSource, TAccumulate, TResult&gt;.Accumulate method" Url="html/f7141b46-f316-6b6b-13dd-b38da64deda1.htm" />
<HelpKINode Title="IDecomposable&lt;TSource, TAccumulate, TResult&gt;.FinalReduce method" Url="html/a3a06fa4-5372-405f-85b2-947afeb79561.htm" />
<HelpKINode Title="IDecomposable&lt;TSource, TAccumulate, TResult&gt;.Initialize method" Url="html/a65ccdbb-51b0-b1a1-1e8d-ccfd30971385.htm" />
<HelpKINode Title="IDecomposable&lt;TSource, TAccumulate, TResult&gt;.RecursiveAccumulate method" Url="html/507ffa9d-4bfa-1702-0a7f-918fd4a42345.htm" />
<HelpKINode Title="IDecomposable&lt;TSource, TAccumulate, TResult&gt;.Seed method" Url="html/51aa8653-daf8-c05e-f659-99046cd343ed.htm" />
<HelpKINode Title="IDryadLinqSerializer(Of T) interface">
<HelpKINode Title="IDryadLinqSerializer(T) Interface" Url="html/21f7cc37-f1d3-ac9c-873a-e5e80c2b6f3c.htm" />
<HelpKINode Title="about IDryadLinqSerializer(Of T) interface" Url="html/21f7cc37-f1d3-ac9c-873a-e5e80c2b6f3c.htm" />
<HelpKINode Title="methods" Url="html/2c560717-db20-fd22-d9b5-7582fe3cdf36.htm" />
</HelpKINode>
<HelpKINode Title="IDryadLinqSerializer(Of T).Read method" Url="html/2bfc09c6-4fdc-09e9-91ef-8aa7972d8966.htm" />
<HelpKINode Title="IDryadLinqSerializer(Of T).Write method" Url="html/db0e2036-b46e-fba5-8502-62da411025b2.htm" />
<HelpKINode Title="IDryadLinqSerializer&lt;T&gt; interface">
<HelpKINode Title="IDryadLinqSerializer(T) Interface" Url="html/21f7cc37-f1d3-ac9c-873a-e5e80c2b6f3c.htm" />
<HelpKINode Title="about IDryadLinqSerializer&lt;T&gt; interface" Url="html/21f7cc37-f1d3-ac9c-873a-e5e80c2b6f3c.htm" />
<HelpKINode Title="methods" Url="html/2c560717-db20-fd22-d9b5-7582fe3cdf36.htm" />
</HelpKINode>
<HelpKINode Title="IDryadLinqSerializer&lt;T&gt;.Read method" Url="html/2bfc09c6-4fdc-09e9-91ef-8aa7972d8966.htm" />
<HelpKINode Title="IDryadLinqSerializer&lt;T&gt;.Write method" Url="html/db0e2036-b46e-fba5-8502-62da411025b2.htm" />
<HelpKINode Title="IKeyedMultiQueryable(Of T, K) interface">
<HelpKINode Title="IKeyedMultiQueryable(T, K) Interface" Url="html/721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm" />
<HelpKINode Title="about IKeyedMultiQueryable(Of T, K) interface" Url="html/721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm" />
<HelpKINode Title="methods" Url="html/44091b80-27bf-7412-5652-95460aecbab8.htm" />
<HelpKINode Title="properties" Url="html/655dc54c-7773-7fab-3311-a7d07d84b414.htm" />
</HelpKINode>
<HelpKINode Title="IKeyedMultiQueryable(Of T, K).Item property" Url="html/15c1c542-c2b5-4b49-86c9-d939b43ae22e.htm" />
<HelpKINode Title="IKeyedMultiQueryable(Of T, K).Keys property" Url="html/22264f86-180e-2fa8-6fe6-791984d633a7.htm" />
<HelpKINode Title="IKeyedMultiQueryable&lt;T, K&gt; interface">
<HelpKINode Title="IKeyedMultiQueryable(T, K) Interface" Url="html/721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm" />
<HelpKINode Title="about IKeyedMultiQueryable&lt;T, K&gt; interface" Url="html/721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm" />
<HelpKINode Title="methods" Url="html/44091b80-27bf-7412-5652-95460aecbab8.htm" />
<HelpKINode Title="properties" Url="html/655dc54c-7773-7fab-3311-a7d07d84b414.htm" />
</HelpKINode>
<HelpKINode Title="IKeyedMultiQueryable&lt;T, K&gt;.Item property" Url="html/15c1c542-c2b5-4b49-86c9-d939b43ae22e.htm" />
<HelpKINode Title="IKeyedMultiQueryable&lt;T, K&gt;.Keys property" Url="html/22264f86-180e-2fa8-6fe6-791984d633a7.htm" />
<HelpKINode Title="IMultiQueryable interface">
<HelpKINode Title="IMultiQueryable Interface" Url="html/1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89.htm" />
<HelpKINode Title="about IMultiQueryable interface" Url="html/1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89.htm" />
<HelpKINode Title="methods" Url="html/740766d6-28e1-ef88-071b-b0e3cc7e4d17.htm" />
<HelpKINode Title="properties" Url="html/4253bc32-68d5-de96-33df-baedee2a46d7.htm" />
</HelpKINode>
<HelpKINode Title="IMultiQueryable(Of T1, T2) interface">
<HelpKINode Title="IMultiQueryable(T1, T2) Interface" Url="html/2f4da221-3f06-8d95-c5ef-20eef2574124.htm" />
<HelpKINode Title="about IMultiQueryable(Of T1, T2) interface" Url="html/2f4da221-3f06-8d95-c5ef-20eef2574124.htm" />
<HelpKINode Title="methods" Url="html/c8738882-e0f7-d2b6-5abb-d06f70250454.htm" />
<HelpKINode Title="properties" Url="html/e9ec9d82-ea4a-a9c4-68ea-23b4cc77679a.htm" />
</HelpKINode>
<HelpKINode Title="IMultiQueryable(Of T1, T2).First property" Url="html/fdba9172-7ef3-7e37-2e6e-bb5fe43cd4b5.htm" />
<HelpKINode Title="IMultiQueryable(Of T1, T2).Second property" Url="html/2200738b-a9b9-cecc-43ba-e6aa4e268ce4.htm" />
<HelpKINode Title="IMultiQueryable(Of T1, T2, T3) interface">
<HelpKINode Title="IMultiQueryable(T1, T2, T3) Interface" Url="html/cfec878f-f774-d543-961d-ea6185530786.htm" />
<HelpKINode Title="about IMultiQueryable(Of T1, T2, T3) interface" Url="html/cfec878f-f774-d543-961d-ea6185530786.htm" />
<HelpKINode Title="methods" Url="html/7c4caea1-1929-465c-6da6-2b3c28429644.htm" />
<HelpKINode Title="properties" Url="html/5dad9835-111b-f58f-1034-59b33c2f3552.htm" />
</HelpKINode>
<HelpKINode Title="IMultiQueryable(Of T1, T2, T3).First property" Url="html/41619f5b-5228-e834-205f-f4e03e769d15.htm" />
<HelpKINode Title="IMultiQueryable(Of T1, T2, T3).Second property" Url="html/c4489d10-17bc-56a7-e82c-d551352d2b96.htm" />
<HelpKINode Title="IMultiQueryable(Of T1, T2, T3).Third property" Url="html/8ed8b95d-2db1-67a2-d98c-c9192b2e0bc4.htm" />
<HelpKINode Title="IMultiQueryable.ElementType method" Url="html/b2f8d418-599c-d187-da9e-38de1cb3b178.htm" />
<HelpKINode Title="IMultiQueryable.Expression property" Url="html/3406300d-cd1d-f797-61e3-7d00b2abd387.htm" />
<HelpKINode Title="IMultiQueryable.NumberOfInputs property" Url="html/f6c4c853-03b8-57aa-cf35-5e7884f6d55b.htm" />
<HelpKINode Title="IMultiQueryable.Provider property" Url="html/da94daa0-4711-ab61-cba5-c5474946b285.htm" />
<HelpKINode Title="IMultiQueryable&lt;T1, T2, T3&gt; interface">
<HelpKINode Title="IMultiQueryable(T1, T2, T3) Interface" Url="html/cfec878f-f774-d543-961d-ea6185530786.htm" />
<HelpKINode Title="about IMultiQueryable&lt;T1, T2, T3&gt; interface" Url="html/cfec878f-f774-d543-961d-ea6185530786.htm" />
<HelpKINode Title="methods" Url="html/7c4caea1-1929-465c-6da6-2b3c28429644.htm" />
<HelpKINode Title="properties" Url="html/5dad9835-111b-f58f-1034-59b33c2f3552.htm" />
</HelpKINode>
<HelpKINode Title="IMultiQueryable&lt;T1, T2, T3&gt;.First property" Url="html/41619f5b-5228-e834-205f-f4e03e769d15.htm" />
<HelpKINode Title="IMultiQueryable&lt;T1, T2, T3&gt;.Second property" Url="html/c4489d10-17bc-56a7-e82c-d551352d2b96.htm" />
<HelpKINode Title="IMultiQueryable&lt;T1, T2, T3&gt;.Third property" Url="html/8ed8b95d-2db1-67a2-d98c-c9192b2e0bc4.htm" />
<HelpKINode Title="IMultiQueryable&lt;T1, T2&gt; interface">
<HelpKINode Title="IMultiQueryable(T1, T2) Interface" Url="html/2f4da221-3f06-8d95-c5ef-20eef2574124.htm" />
<HelpKINode Title="about IMultiQueryable&lt;T1, T2&gt; interface" Url="html/2f4da221-3f06-8d95-c5ef-20eef2574124.htm" />
<HelpKINode Title="methods" Url="html/c8738882-e0f7-d2b6-5abb-d06f70250454.htm" />
<HelpKINode Title="properties" Url="html/e9ec9d82-ea4a-a9c4-68ea-23b4cc77679a.htm" />
</HelpKINode>
<HelpKINode Title="IMultiQueryable&lt;T1, T2&gt;.First property" Url="html/fdba9172-7ef3-7e37-2e6e-bb5fe43cd4b5.htm" />
<HelpKINode Title="IMultiQueryable&lt;T1, T2&gt;.Second property" Url="html/2200738b-a9b9-cecc-43ba-e6aa4e268ce4.htm" />
<HelpKINode Title="Inequality operator">
<HelpKINode Title="LineRecord.Inequality Operator " Url="html/417d2a6e-1f42-50c2-9fc9-25877bf4f0c5.htm" />
<HelpKINode Title="Pair(T1, T2).Inequality Operator " Url="html/3bf777a3-e426-ee8f-f3de-10021739d621.htm" />
</HelpKINode>
<HelpKINode Title="Information enumeration member" Url="html/7f48283a-3fd5-7bf1-1b43-e0164f893f54.htm" />
<HelpKINode Title="Ingress(Of T) method" Url="html/3bf58a6c-aa87-cb1f-9aea-1c3c59c898d1.htm" />
<HelpKINode Title="Ingress&lt;T&gt; method" Url="html/3bf58a6c-aa87-cb1f-9aea-1c3c59c898d1.htm" />
<HelpKINode Title="Initialize method">
<HelpKINode Title="GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult).Initialize Method " Url="html/7ad863dd-2b05-4189-31b3-b8e3fe344c31.htm" />
<HelpKINode Title="IDecomposable(TSource, TAccumulate, TResult).Initialize Method " Url="html/a65ccdbb-51b0-b1a1-1e8d-ccfd30971385.htm" />
</HelpKINode>
<HelpKINode Title="IntermediateDataCompressionScheme property" Url="html/cae4c54e-1f13-c9b9-2c72-935d9df74655.htm" />
<HelpKINode Title="IsExpensive property" Url="html/86c25f2d-0f68-e003-8d8d-67563fc07e67.htm" />
<HelpKINode Title="IsStateful property" Url="html/ddb9ef54-f5d0-5fcf-b1b7-c71c7966b4f1.htm" />
<HelpKINode Title="Item property" Url="html/15c1c542-c2b5-4b49-86c9-d939b43ae22e.htm" />
<HelpKINode Title="JobEnvironmentVariables property" Url="html/60213299-6472-65f7-8298-246f575f4519.htm" />
<HelpKINode Title="JobFriendlyName property" Url="html/ba86aa92-5fe3-fac7-c21c-a5a381b27eb3.htm" />
<HelpKINode Title="JobIds property" Url="html/6ead0e05-329b-6672-cf9b-b13587e53520.htm" />
<HelpKINode Title="JobMaxNodes property" Url="html/a09a1cc0-3e1c-6484-eee1-abf6f43e8830.htm" />
<HelpKINode Title="JobMinNodes property" Url="html/9c6a16ea-f074-0481-246b-4a8b93acd4a6.htm" />
<HelpKINode Title="JobPassword property" Url="html/d94766a9-385e-6972-0d01-e0ad496422d3.htm" />
<HelpKINode Title="JobRuntimeLimit property" Url="html/abece889-c5a1-aa62-d2c6-6e371273a12e.htm" />
<HelpKINode Title="JobUsername property" Url="html/024262a5-8d35-80f8-1b76-7a6242ad400b.htm" />
<HelpKINode Title="Key property" Url="html/3455cc4c-9167-df7a-419d-73f08bc8d22b.htm" />
<HelpKINode Title="Keys property" Url="html/22264f86-180e-2fa8-6fe6-791984d633a7.htm" />
<HelpKINode Title="Kind property" Url="html/615c02e9-bed8-c196-6e0a-7db0f9bd5966.htm" />
<HelpKINode Title="LastAsQuery method" Url="html/5b19d6a4-77d1-1e89-dfc2-d28d904f0856.htm" />
<HelpKINode Title="LessThan operator" Url="html/52db89c1-d554-4ea0-8823-03e81b8bcf68.htm" />
<HelpKINode Title="Level field" Url="html/185c1846-bd97-af24-9a74-6b5679232636.htm" />
<HelpKINode Title="Line property" Url="html/44d81f82-621f-45fe-49c0-0ce97fd2d81b.htm" />
<HelpKINode Title="LineRecord structure">
<HelpKINode Title="LineRecord Structure" Url="html/b077f955-9bc6-1e0b-e710-00cc784bccf1.htm" />
<HelpKINode Title="about LineRecord structure" Url="html/b077f955-9bc6-1e0b-e710-00cc784bccf1.htm" />
<HelpKINode Title="constructor" Url="html/21757897-eca5-a7a0-b1a8-4d0d9a870df1.htm" />
<HelpKINode Title="methods" Url="html/7652caec-215c-720a-52b5-10bf7c56f005.htm" />
<HelpKINode Title="operators" Url="html/16daaf7e-3114-85a5-746f-9b39bda27cb9.htm" />
<HelpKINode Title="properties" Url="html/eddcf25c-9bc1-baa0-eafa-34b988e8b52b.htm" />
</HelpKINode>
<HelpKINode Title="LineRecord.CompareTo method" Url="html/62af3731-c551-19e3-10bc-dab7b3edc7ed.htm" />
<HelpKINode Title="LineRecord.Equality operator" Url="html/85b0619b-7cb3-8abb-41a0-e721890b4b4b.htm" />
<HelpKINode Title="LineRecord.Equals method" Url="html/6bb38453-9d1d-3ec5-507f-cf38853cffed.htm" />
<HelpKINode Title="LineRecord.GetHashCode method" Url="html/b1f41ee4-8457-0b3d-4a50-692888f6d306.htm" />
<HelpKINode Title="LineRecord.GreaterThan operator" Url="html/ed798443-81e0-6dcd-be4f-27eb558511a4.htm" />
<HelpKINode Title="LineRecord.Inequality operator" Url="html/417d2a6e-1f42-50c2-9fc9-25877bf4f0c5.htm" />
<HelpKINode Title="LineRecord.LessThan operator" Url="html/52db89c1-d554-4ea0-8823-03e81b8bcf68.htm" />
<HelpKINode Title="LineRecord.Line property" Url="html/44d81f82-621f-45fe-49c0-0ce97fd2d81b.htm" />
<HelpKINode Title="LineRecord.LineRecord constructor" Url="html/21757897-eca5-a7a0-b1a8-4d0d9a870df1.htm" />
<HelpKINode Title="LineRecord.ToString method" Url="html/e45f62f1-20db-4823-babb-6e0310fa18d7.htm" />
<HelpKINode Title="LOCAL enumeration member" Url="html/db48824c-598d-a2a7-24db-a422d19467b1.htm" />
<HelpKINode Title="LocalDebug property" Url="html/bb832ac9-26e2-8dcf-6e10-da1f43571fc8.htm" />
<HelpKINode Title="LocalExecution property" Url="html/f49487bb-3b0f-4054-0c17-ffdca967af5e.htm" />
<HelpKINode Title="LongCountAsQuery method" Url="html/6bc2eb5c-4e5c-228f-d4e6-420163ae5b5d.htm" />
<HelpKINode Title="LongSelect(Of TSource, TResult) method" Url="html/4479c8c4-d7b5-0a9a-f6ad-740afffa2969.htm" />
<HelpKINode Title="LongSelect&lt;TSource, TResult&gt; method" Url="html/4479c8c4-d7b5-0a9a-f6ad-740afffa2969.htm" />
<HelpKINode Title="LongSelectMany method" Url="html/241043ae-a90b-3cca-80f6-71bc570453fd.htm" />
<HelpKINode Title="LongSkipWhile(Of TSource) method" Url="html/c5b7a8bf-193f-1e84-706e-a9ffc74d41a3.htm" />
<HelpKINode Title="LongSkipWhile&lt;TSource&gt; method" Url="html/c5b7a8bf-193f-1e84-706e-a9ffc74d41a3.htm" />
<HelpKINode Title="LongTakeWhile(Of TSource) method" Url="html/1361c8c8-c04b-e5f2-6112-9f62b5af8fcb.htm" />
<HelpKINode Title="LongTakeWhile&lt;TSource&gt; method" Url="html/1361c8c8-c04b-e5f2-6112-9f62b5af8fcb.htm" />
<HelpKINode Title="LongWhere(Of TSource) method" Url="html/a9e6f3c2-457f-4d7d-af58-7a4827a47f92.htm" />
<HelpKINode Title="LongWhere&lt;TSource&gt; method" Url="html/a9e6f3c2-457f-4d7d-af58-7a4827a47f92.htm" />
<HelpKINode Title="MakeDefaultUri method" Url="html/a6795b03-3dc7-3b8e-96af-20c0bf78461a.htm" />
<HelpKINode Title="MapReduce(Of TSource, TMap, TKey, TResult) method" Url="html/6613acc6-d94d-28ed-f5ce-28ad5967f7f0.htm" />
<HelpKINode Title="MapReduce&lt;TSource, TMap, TKey, TResult&gt; method" Url="html/6613acc6-d94d-28ed-f5ce-28ad5967f7f0.htm" />
<HelpKINode Title="MatchClientNetFrameworkVersion property" Url="html/646b413a-cfac-0795-0766-86606d8a5410.htm" />
<HelpKINode Title="MaxAsQuery method" Url="html/f4b36863-6a66-5778-2fae-56e7eac50834.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq namespace" Url="html/efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.AssociativeAttribute class" Url="html/d3237c01-5085-45a9-fa72-8e489a9bf480.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.CompressionScheme enumeration" Url="html/9266635e-c3ea-7e66-528b-f44b55a2daca.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.CustomDryadLinqSerializerAttribute class" Url="html/1842f60d-35dc-a934-cc36-dfa0cba934e1.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DataProvider class" Url="html/e30d9823-523d-4504-b321-4c990c768d6d.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DecomposableAttribute class" Url="html/49fcc552-44b3-1cd7-9e8d-0182923c9af4.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqBinaryReader class" Url="html/e2f6b120-72cd-d97c-d0c9-9ab1b4abb5b5.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqBinaryWriter class" Url="html/46c3c8f6-eac2-96d5-3ff0-d837669e9557.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqCluster interface" Url="html/65be1ae5-77ef-6de4-cd1f-586d32aeb383.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqContext class" Url="html/093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqException class" Url="html/692e14c6-46ed-baaf-6b0f-b36cb74fe616.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqExtension class" Url="html/d83d6168-067a-d431-aaf5-3d9515eff360.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqJobInfo class" Url="html/1286706e-b13a-d4da-31b6-a8e9095728c7.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqLog class" Url="html/85ce5a97-d2bb-bd50-ca58-f017d3769b7c.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqMetaData class" Url="html/5e3ae825-91af-0ff7-6ae4-f98f18bd6e58.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqQueryable class" Url="html/6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.DryadLinqStreamInfo class" Url="html/562bb8ee-21e0-0f88-c57c-64a244256648.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.ExecutorKind enumeration" Url="html/e652bfe9-c973-2744-87c1-e63cf9db4f56.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.ForkTuple(Of T1, T2) structure" Url="html/28af6b37-22b3-448f-cf9f-ea15b5aa90d6.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.ForkTuple(Of T1, T2, T3) structure" Url="html/07206258-2e2e-6aa3-4c79-0c0674875849.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.ForkTuple&lt;T1, T2, T3&gt; structure" Url="html/07206258-2e2e-6aa3-4c79-0c0674875849.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.ForkTuple&lt;T1, T2&gt; structure" Url="html/28af6b37-22b3-448f-cf9f-ea15b5aa90d6.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.ForkValue(Of T) structure" Url="html/3d9c6034-3028-09ed-9ec6-6af9101c0f52.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.ForkValue&lt;T&gt; structure" Url="html/3d9c6034-3028-09ed-9ec6-6af9101c0f52.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.GenericAssociative(Of TAssoc, TAccumulate) class" Url="html/a49d01fb-8518-8fe8-02b4-7fd06cec7ed4.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.GenericAssociative&lt;TAssoc, TAccumulate&gt; class" Url="html/a49d01fb-8518-8fe8-02b4-7fd06cec7ed4.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.GenericDecomposable(Of TDecomposable, TSource, TAccumulate, TResult) class" Url="html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.GenericDecomposable&lt;TDecomposable, TSource, TAccumulate, TResult&gt; class" Url="html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IAssociative(Of TAccumulate) interface" Url="html/8ac439be-5f1e-cce5-eea2-11de7aa46929.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IAssociative&lt;TAccumulate&gt; interface" Url="html/8ac439be-5f1e-cce5-eea2-11de7aa46929.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IDecomposable(Of TSource, TAccumulate, TResult) interface" Url="html/28f10369-ddd1-2090-d4e2-16e5c7b34795.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IDecomposable&lt;TSource, TAccumulate, TResult&gt; interface" Url="html/28f10369-ddd1-2090-d4e2-16e5c7b34795.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IDryadLinqSerializer(Of T) interface" Url="html/21f7cc37-f1d3-ac9c-873a-e5e80c2b6f3c.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IDryadLinqSerializer&lt;T&gt; interface" Url="html/21f7cc37-f1d3-ac9c-873a-e5e80c2b6f3c.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IKeyedMultiQueryable(Of T, K) interface" Url="html/721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IKeyedMultiQueryable&lt;T, K&gt; interface" Url="html/721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IMultiQueryable interface" Url="html/1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IMultiQueryable(Of T1, T2) interface" Url="html/2f4da221-3f06-8d95-c5ef-20eef2574124.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IMultiQueryable(Of T1, T2, T3) interface" Url="html/cfec878f-f774-d543-961d-ea6185530786.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IMultiQueryable&lt;T1, T2, T3&gt; interface" Url="html/cfec878f-f774-d543-961d-ea6185530786.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.IMultiQueryable&lt;T1, T2&gt; interface" Url="html/2f4da221-3f06-8d95-c5ef-20eef2574124.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.LineRecord structure" Url="html/b077f955-9bc6-1e0b-e710-00cc784bccf1.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.NullableAttribute class" Url="html/d38002f5-8220-c873-ca1b-5c99e45e5007.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.Pair(Of T1, T2) structure" Url="html/4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.Pair&lt;T1, T2&gt; structure" Url="html/4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.PlatformKind enumeration" Url="html/db48824c-598d-a2a7-24db-a422d19467b1.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.QueryTraceLevel enumeration" Url="html/7f48283a-3fd5-7bf1-1b43-e0164f893f54.htm" />
<HelpKINode Title="Microsoft.Research.DryadLinq.ResourceAttribute class" Url="html/f48da9e0-e74d-da3a-ca41-d3afe376271d.htm" />
<HelpKINode Title="MinAsQuery method" Url="html/9d6119ab-121a-148e-3170-b5b252aaef07.htm" />
<HelpKINode Title="NodeGroup property" Url="html/3bcf5415-69d6-0f64-fa4f-fa1ba7cade31.htm" />
<HelpKINode Title="None enumeration member" Url="html/9266635e-c3ea-7e66-528b-f44b55a2daca.htm" />
<HelpKINode Title="NullableAttribute class">
<HelpKINode Title="NullableAttribute Class" Url="html/d38002f5-8220-c873-ca1b-5c99e45e5007.htm" />
<HelpKINode Title="about NullableAttribute class" Url="html/d38002f5-8220-c873-ca1b-5c99e45e5007.htm" />
<HelpKINode Title="constructor" Url="html/3d9008bb-980e-9fdb-7522-d29320396ef8.htm" />
<HelpKINode Title="methods" Url="html/1576a427-e89d-6a22-37c1-96d064b3065a.htm" />
<HelpKINode Title="properties" Url="html/753e9527-e465-fd00-179a-7bdc6462db53.htm" />
</HelpKINode>
<HelpKINode Title="NullableAttribute.CanBeNull property" Url="html/4cf712fd-ccc7-ba39-e732-6fdaf9453187.htm" />
<HelpKINode Title="NullableAttribute.NullableAttribute constructor" Url="html/3d9008bb-980e-9fdb-7522-d29320396ef8.htm" />
<HelpKINode Title="NumberOfInputs property" Url="html/f6c4c853-03b8-57aa-cf35-5e7884f6d55b.htm" />
<HelpKINode Title="Off enumeration member" Url="html/7f48283a-3fd5-7bf1-1b43-e0164f893f54.htm" />
<HelpKINode Title="OutputDataCompressionScheme property" Url="html/1b4bb2db-3cb5-2bb3-22b7-d0d1f24eb7a6.htm" />
<HelpKINode Title="Pair(Of T1, T2) structure">
<HelpKINode Title="Pair(T1, T2) Structure" Url="html/4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm" />
<HelpKINode Title="about Pair(Of T1, T2) structure" Url="html/4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm" />
<HelpKINode Title="constructor" Url="html/1516e01c-7658-2623-7a8f-ee4df625d7f6.htm" />
<HelpKINode Title="methods" Url="html/46e8932b-d478-eb06-fa1c-ef9d3cc74caa.htm" />
<HelpKINode Title="operators" Url="html/c826392f-ec40-9563-7ba3-86d6d58eb217.htm" />
<HelpKINode Title="properties" Url="html/f308d9e3-9559-30ab-60d9-96d07c0a5c32.htm" />
</HelpKINode>
<HelpKINode Title="Pair(Of T1, T2).Equality operator" Url="html/eb7302d8-bade-88ab-7153-3e08f8902454.htm" />
<HelpKINode Title="Pair(Of T1, T2).Equals method" Url="html/5e55be13-9e9b-2600-32d3-ba9ca745aa61.htm" />
<HelpKINode Title="Pair(Of T1, T2).GetHashCode method" Url="html/6823bc5e-464f-8c0f-48e5-219730a0087e.htm" />
<HelpKINode Title="Pair(Of T1, T2).Inequality operator" Url="html/3bf777a3-e426-ee8f-f3de-10021739d621.htm" />
<HelpKINode Title="Pair(Of T1, T2).Key property" Url="html/3455cc4c-9167-df7a-419d-73f08bc8d22b.htm" />
<HelpKINode Title="Pair(Of T1, T2).Pair constructor" Url="html/1516e01c-7658-2623-7a8f-ee4df625d7f6.htm" />
<HelpKINode Title="Pair(Of T1, T2).ToString method" Url="html/cc3a4b94-829d-7c14-e4b8-5502f3f48564.htm" />
<HelpKINode Title="Pair(Of T1, T2).Value property" Url="html/851049b8-d045-8c03-239a-552bbc87e72d.htm" />
<HelpKINode Title="Pair&lt;T1, T2&gt; structure">
<HelpKINode Title="Pair(T1, T2) Structure" Url="html/4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm" />
<HelpKINode Title="about Pair&lt;T1, T2&gt; structure" Url="html/4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm" />
<HelpKINode Title="constructor" Url="html/1516e01c-7658-2623-7a8f-ee4df625d7f6.htm" />
<HelpKINode Title="methods" Url="html/46e8932b-d478-eb06-fa1c-ef9d3cc74caa.htm" />
<HelpKINode Title="operators" Url="html/c826392f-ec40-9563-7ba3-86d6d58eb217.htm" />
<HelpKINode Title="properties" Url="html/f308d9e3-9559-30ab-60d9-96d07c0a5c32.htm" />
</HelpKINode>
<HelpKINode Title="Pair&lt;T1, T2&gt;.Equality operator" Url="html/eb7302d8-bade-88ab-7153-3e08f8902454.htm" />
<HelpKINode Title="Pair&lt;T1, T2&gt;.Equals method" Url="html/5e55be13-9e9b-2600-32d3-ba9ca745aa61.htm" />
<HelpKINode Title="Pair&lt;T1, T2&gt;.GetHashCode method" Url="html/6823bc5e-464f-8c0f-48e5-219730a0087e.htm" />
<HelpKINode Title="Pair&lt;T1, T2&gt;.Inequality operator" Url="html/3bf777a3-e426-ee8f-f3de-10021739d621.htm" />
<HelpKINode Title="Pair&lt;T1, T2&gt;.Key property" Url="html/3455cc4c-9167-df7a-419d-73f08bc8d22b.htm" />
<HelpKINode Title="Pair&lt;T1, T2&gt;.Pair constructor" Url="html/1516e01c-7658-2623-7a8f-ee4df625d7f6.htm" />
<HelpKINode Title="Pair&lt;T1, T2&gt;.ToString method" Url="html/cc3a4b94-829d-7c14-e4b8-5502f3f48564.htm" />
<HelpKINode Title="Pair&lt;T1, T2&gt;.Value property" Url="html/851049b8-d045-8c03-239a-552bbc87e72d.htm" />
<HelpKINode Title="PartitionCount property" Url="html/7e6c6d5f-35f2-347f-167b-f0ca16f56723.htm" />
<HelpKINode Title="PartitionUncPath property" Url="html/e2bc33c7-d205-23d9-e8bc-11f02dfae406.htm" />
<HelpKINode Title="PathSeparator property" Url="html/b858c440-72f0-0ede-cb6e-92651cf1c9e7.htm" />
<HelpKINode Title="PeloponneseHomeDirectory property" Url="html/9293e769-1a4e-37c1-3236-ef5c533e3e00.htm" />
<HelpKINode Title="PlatformKind enumeration" Url="html/db48824c-598d-a2a7-24db-a422d19467b1.htm" />
<HelpKINode Title="PlatformKind property" Url="html/bb90c987-f871-d38d-aced-5665dfb21853.htm" />
<HelpKINode Title="Provider property" Url="html/da94daa0-4711-ab61-cba5-c5474946b285.htm" />
<HelpKINode Title="QueryTraceLevel enumeration" Url="html/7f48283a-3fd5-7bf1-1b43-e0164f893f54.htm" />
<HelpKINode Title="RangePartition method" Url="html/f90db211-91a6-9160-f0b1-f7b5d6267e24.htm" />
<HelpKINode Title="Read method" Url="html/2bfc09c6-4fdc-09e9-91ef-8aa7972d8966.htm" />
<HelpKINode Title="ReadBool method" Url="html/2ee81ea8-7bae-c5c3-321d-a2f34f52376e.htm" />
<HelpKINode Title="ReadBytes method" Url="html/40368e39-431f-8596-e970-9996a945e453.htm" />
<HelpKINode Title="ReadChar method" Url="html/f9f3883f-e817-f693-6540-03eaa31f66fe.htm" />
<HelpKINode Title="ReadChars method" Url="html/5523eb71-f765-488d-a0ed-570dcebea4a3.htm" />
<HelpKINode Title="ReadCompactInt32 method" Url="html/521aa3b5-08a2-a367-d7cb-e385573c0327.htm" />
<HelpKINode Title="ReadData(Of T) method" Url="html/b3b5d8dc-09fb-27ab-fbab-b2e58ab970a3.htm" />
<HelpKINode Title="ReadData&lt;T&gt; method" Url="html/b3b5d8dc-09fb-27ab-fbab-b2e58ab970a3.htm" />
<HelpKINode Title="ReadDateTime method" Url="html/72e693e2-7766-ed09-a7a3-03c782937026.htm" />
<HelpKINode Title="ReadDecimal method" Url="html/74b7a3c4-0a88-c5e0-7fd7-7bcdadb47cf5.htm" />
<HelpKINode Title="ReadDouble method" Url="html/f8a16c4a-7d02-1d28-3f87-0c648c533771.htm" />
<HelpKINode Title="ReadGuid method" Url="html/35d50873-486c-2704-0353-cac33d12a191.htm" />
<HelpKINode Title="ReadInt16 method" Url="html/81938094-e3ac-6406-639d-7bcc0b33af4d.htm" />
<HelpKINode Title="ReadInt32 method" Url="html/154a0be2-f541-8bea-52fc-3e187bd8e65f.htm" />
<HelpKINode Title="ReadInt64 method" Url="html/25da8afc-85f0-7323-cb4c-cb35f137add0.htm" />
<HelpKINode Title="ReadRawBytes method" Url="html/ceab139e-eca2-9ea8-9755-16c24400b59b.htm" />
<HelpKINode Title="ReadSByte method" Url="html/d62a9fff-f98f-8edf-fa8f-b03f52bda6c1.htm" />
<HelpKINode Title="ReadSingle method" Url="html/c9654741-0225-48f8-e9d8-75ccc332e588.htm" />
<HelpKINode Title="ReadSqlDateTime method" Url="html/6e7eaae4-e7a0-8254-068e-271be85cfa07.htm" />
<HelpKINode Title="ReadString method" Url="html/201552ef-4ce6-c229-b88d-da298fdf6b83.htm" />
<HelpKINode Title="ReadUByte method" Url="html/6687a7f4-53a1-0837-c251-f424262f3040.htm" />
<HelpKINode Title="ReadUInt16 method" Url="html/14426d10-5679-395b-3954-e340a465128a.htm" />
<HelpKINode Title="ReadUInt32 method" Url="html/e4431f4b-463e-7b5a-9933-223c364a0397.htm" />
<HelpKINode Title="ReadUInt64 method" Url="html/0e7a8462-0d75-3d0c-7203-579f46b9765a.htm" />
<HelpKINode Title="RecursiveAccumulate method">
<HelpKINode Title="GenericAssociative(TAssoc, TAccumulate).RecursiveAccumulate Method " Url="html/f8d20d20-bbec-a340-6200-48866b0ac7d0.htm" />
<HelpKINode Title="GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult).RecursiveAccumulate Method " Url="html/032e436e-efdc-433f-654c-75ce93cdb5d2.htm" />
<HelpKINode Title="IAssociative(TAccumulate).RecursiveAccumulate Method " Url="html/262f7961-aa38-363a-4625-9557322dc386.htm" />
<HelpKINode Title="IDecomposable(TSource, TAccumulate, TResult).RecursiveAccumulate Method " Url="html/507ffa9d-4bfa-1702-0a7f-918fd4a42345.htm" />
</HelpKINode>
<HelpKINode Title="Register method" Url="html/a75dd58d-7100-3ca7-290f-9bdb23548453.htm" />
<HelpKINode Title="RegisterAzureAccount method" Url="html/17d622f1-6799-aeab-3637-9d66a4d79f0b.htm" />
<HelpKINode Title="ResourceAttribute class">
<HelpKINode Title="ResourceAttribute Class" Url="html/f48da9e0-e74d-da3a-ca41-d3afe376271d.htm" />
<HelpKINode Title="about ResourceAttribute class" Url="html/f48da9e0-e74d-da3a-ca41-d3afe376271d.htm" />
<HelpKINode Title="constructor" Url="html/86d920ef-97e4-e664-37e7-3a578a6147f8.htm" />
<HelpKINode Title="methods" Url="html/af8cd2ea-66ae-25d1-e6d6-72bdc1970c4b.htm" />
<HelpKINode Title="properties" Url="html/62294aa3-632b-d83c-211b-ce7c7c1e006f.htm" />
</HelpKINode>
<HelpKINode Title="ResourceAttribute.IsExpensive property" Url="html/86c25f2d-0f68-e003-8d8d-67563fc07e67.htm" />
<HelpKINode Title="ResourceAttribute.IsStateful property" Url="html/ddb9ef54-f5d0-5fcf-b1b7-c71c7966b4f1.htm" />
<HelpKINode Title="ResourceAttribute.ResourceAttribute constructor" Url="html/86d920ef-97e4-e664-37e7-3a578a6147f8.htm" />
<HelpKINode Title="ResourcesToAdd property" Url="html/e25f71a6-3fa2-ac4f-bd57-1edb3da4c44e.htm" />
<HelpKINode Title="ResourcesToRemove property" Url="html/b21ce425-bc26-fe1e-cd75-dee611a38fda.htm" />
<HelpKINode Title="RewriteUri(Of T) method" Url="html/325384d4-2a45-fe6c-b801-212e9d856332.htm" />
<HelpKINode Title="RewriteUri&lt;T&gt; method" Url="html/325384d4-2a45-fe6c-b801-212e9d856332.htm" />
<HelpKINode Title="RuntimeTraceLevel property" Url="html/b0be9bd4-afbe-4239-4dbb-6a5405eeb1c1.htm" />
<HelpKINode Title="Scheme property" Url="html/8c73442d-fbb2-4170-5d0f-2a61d34c83ca.htm" />
<HelpKINode Title="Second property">
<HelpKINode Title="ForkTuple(T1, T2).Second Property " Url="html/e91d270e-8169-d4e6-5c47-e01fddea6886.htm" />
<HelpKINode Title="ForkTuple(T1, T2, T3).Second Property " Url="html/86d97af6-9c8c-ccbb-4a2b-386657c1a9fe.htm" />
<HelpKINode Title="IMultiQueryable(T1, T2).Second Property " Url="html/2200738b-a9b9-cecc-43ba-e6aa4e268ce4.htm" />
<HelpKINode Title="IMultiQueryable(T1, T2, T3).Second Property " Url="html/c4489d10-17bc-56a7-e82c-d551352d2b96.htm" />
</HelpKINode>
<HelpKINode Title="Seed method">
<HelpKINode Title="GenericAssociative(TAssoc, TAccumulate).Seed Method " Url="html/97df1d63-3677-417d-8007-20899312a1a3.htm" />
<HelpKINode Title="GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult).Seed Method " Url="html/3f7c6b9f-b02f-4152-9d67-ce663a9710f7.htm" />
<HelpKINode Title="IAssociative(TAccumulate).Seed Method " Url="html/5d92709d-0db3-49af-421e-4a66042819b0.htm" />
<HelpKINode Title="IDecomposable(TSource, TAccumulate, TResult).Seed Method " Url="html/51aa8653-daf8-c05e-f659-99046cd343ed.htm" />
</HelpKINode>
<HelpKINode Title="SelectOrderPreserving property" Url="html/17d9d840-e581-26d0-9aaf-16ca5687adda.htm" />
<HelpKINode Title="SequenceEqualAsQuery method" Url="html/1ff40fab-862b-4871-b578-5a8c908f1294.htm" />
<HelpKINode Title="SerializerType property" Url="html/5a4ebe0b-dfae-da42-1c4f-3face32fbe00.htm" />
<HelpKINode Title="SingleAsQuery method" Url="html/f8e0a412-97bc-99bb-d919-03e404d236b8.htm" />
<HelpKINode Title="SlidingWindow(Of T1, T2) method" Url="html/cf28149d-3737-b5e6-0fdb-8ad0d0a6a31b.htm" />
<HelpKINode Title="SlidingWindow&lt;T1, T2&gt; method" Url="html/cf28149d-3737-b5e6-0fdb-8ad0d0a6a31b.htm" />
<HelpKINode Title="Submit method" Url="html/87ba860b-6c3b-dafe-6d00-0f2a05636b0c.htm" />
<HelpKINode Title="SubmitAndWait method" Url="html/afeb2773-3e8d-61d5-52be-00d2323d69c2.htm" />
<HelpKINode Title="SumAsQuery method" Url="html/f7353d8f-b53e-4485-3a32-a47d26df83b2.htm" />
<HelpKINode Title="Third property">
<HelpKINode Title="ForkTuple(T1, T2, T3).Third Property " Url="html/c90df8c7-3a30-7c79-ce29-c37b9def4567.htm" />
<HelpKINode Title="IMultiQueryable(T1, T2, T3).Third Property " Url="html/8ed8b95d-2db1-67a2-d98c-c9192b2e0bc4.htm" />
</HelpKINode>
<HelpKINode Title="ToStore method" Url="html/dfd04264-0973-a546-1ef7-4971c13a4d71.htm" />
<HelpKINode Title="ToString method">
<HelpKINode Title="DryadLinqBinaryReader.ToString Method " Url="html/74d1e42c-3b08-ea09-0b8b-c841914deab0.htm" />
<HelpKINode Title="DryadLinqBinaryWriter.ToString Method " Url="html/8b8a247b-5e60-0750-b2e2-7de2d3ed69ee.htm" />
<HelpKINode Title="LineRecord.ToString Method " Url="html/e45f62f1-20db-4823-babb-6e0310fa18d7.htm" />
<HelpKINode Title="Pair(T1, T2).ToString Method " Url="html/cc3a4b94-829d-7c14-e4b8-5502f3f48564.htm" />
</HelpKINode>
<HelpKINode Title="Value property">
<HelpKINode Title="ForkValue(T).Value Property " Url="html/901dcf86-c65c-a976-7b3b-e334fc1d93cf.htm" />
<HelpKINode Title="Pair(T1, T2).Value Property " Url="html/851049b8-d045-8c03-239a-552bbc87e72d.htm" />
</HelpKINode>
<HelpKINode Title="Verbose enumeration member" Url="html/7f48283a-3fd5-7bf1-1b43-e0164f893f54.htm" />
<HelpKINode Title="version">
<HelpKINode Title="1.0.0.0" Url="html/a2eaaf5d-f1d8-4319-844e-a458cc72e4db.htm" />
<HelpKINode Title="history" Url="html/a5d9b686-8282-4120-ae0e-5a9f11a2ac0b.htm" />
</HelpKINode>
<HelpKINode Title="Wait method" Url="html/7ffb4590-0ee6-b22c-d148-d971fb69f7c8.htm" />
<HelpKINode Title="Warning enumeration member" Url="html/7f48283a-3fd5-7bf1-1b43-e0164f893f54.htm" />
<HelpKINode Title="Welcome" Url="html/e203b95e-0737-40f6-9c16-fc84484a5bad.htm" />
<HelpKINode Title="Write method">
<HelpKINode Title="DryadLinqBinaryWriter.Write Method " Url="html/a520e94d-0d05-1c66-4b54-06b43eac5735.htm" />
<HelpKINode Title="IDryadLinqSerializer(T).Write Method " Url="html/db0e2036-b46e-fba5-8502-62da411025b2.htm" />
</HelpKINode>
<HelpKINode Title="WriteBytes method" Url="html/e865381e-1e90-4f47-894b-6304d0028ef0.htm" />
<HelpKINode Title="WriteChars method" Url="html/21fec768-ab9c-536d-b901-9fbe1ab4b958.htm" />
<HelpKINode Title="WriteCompact method" Url="html/39ca1745-5c7e-3a08-8aa3-ba34af15e044.htm" />
<HelpKINode Title="WriteRawBytes method" Url="html/b1ad85ba-1fa8-77de-a82a-c04f1436060d.htm" />
<HelpKINode Title="YARN_AZURE enumeration member" Url="html/db48824c-598d-a2a7-24db-a422d19467b1.htm" />
<HelpKINode Title="YARN_NATIVE enumeration member" Url="html/db48824c-598d-a2a7-24db-a422d19467b1.htm" />
</HelpKI>

584
WebTOC.xml Normal file
View File

@ -0,0 +1,584 @@
<?xml version="1.0" encoding="utf-8"?>
<HelpTOC>
<HelpTOCNode Title="Welcome to the DryadLINQ help page" Url="html/e203b95e-0737-40f6-9c16-fc84484a5bad.htm" />
<HelpTOCNode Id="23c97a37-0b26-4427-bbc2-af2de5e9ac2e" Title="Getting Started" Url="html/4a617e67-0920-46e4-9223-5effbac46b3d.htm">
<HelpTOCNode Title="Quick Start" Url="html/e992fd94-c956-481d-82e6-dbdf45daa722.htm" />
<HelpTOCNode Title="Setting up an HDInsight 3.0 cluster" Url="html/4aefe670-7b2b-4c05-9a65-6c60ff13c3b5.htm" />
<HelpTOCNode Title="Building the Job Browser" Url="html/91822db3-8a00-4307-ad8a-595c94f449b0.htm" />
</HelpTOCNode>
<HelpTOCNode Id="82b088a4-535c-4775-8f9d-e6095d3b9b49" Title="Resources" Url="html/1ef96122-dbe3-4815-a81f-7b5a72bf9f4f.htm">
<HelpTOCNode Title="Running a DryadLINQ job on HDInsight" Url="html/3596a79f-0714-43b0-b49a-ea9eeccb7326.htm" />
</HelpTOCNode>
<HelpTOCNode Id="512829f4-d7ff-49bc-9d75-a668d6db9e3b" Title="Version History" Url="html/a5d9b686-8282-4120-ae0e-5a9f11a2ac0b.htm">
<HelpTOCNode Title="Version 0.1.1" Url="html/a2eaaf5d-f1d8-4319-844e-a458cc72e4db.htm" />
</HelpTOCNode>
<HelpTOCNode Id="99fb1391-a689-4b5a-b0df-3f0080e49ae8" Title="Microsoft.Research.DryadLinq Namespace" Url="html/efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm">
<HelpTOCNode Id="10e56035-5419-4602-b944-be1b6f420ab0" Title="AssociativeAttribute Class" Url="html/d3237c01-5085-45a9-fa72-8e489a9bf480.htm">
<HelpTOCNode Title="AssociativeAttribute Constructor " Url="html/d983b9ab-497d-ab70-c9a7-6a7deba87eeb.htm" />
<HelpTOCNode Title="AssociativeAttribute Methods" Url="html/2742392b-14df-2e20-8199-eba6eff9de1e.htm" />
<HelpTOCNode Id="48b5c269-1f0d-4b60-bab0-d86b5def4ad7" Title="AssociativeAttribute Properties" Url="html/68d64338-5cda-816c-965b-9e8f70c00350.htm">
<HelpTOCNode Title="AssociativeType Property " Url="html/daef2faf-6f9e-bfd4-710b-d0a00af66587.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Title="CompressionScheme Enumeration" Url="html/9266635e-c3ea-7e66-528b-f44b55a2daca.htm" />
<HelpTOCNode Id="1ee439b6-889f-4141-b1cd-710f99997cf8" Title="CustomDryadLinqSerializerAttribute Class" Url="html/1842f60d-35dc-a934-cc36-dfa0cba934e1.htm">
<HelpTOCNode Title="CustomDryadLinqSerializerAttribute Constructor " Url="html/188cfe0e-30ad-5808-ecf3-69159ca7250f.htm" />
<HelpTOCNode Title="CustomDryadLinqSerializerAttribute Methods" Url="html/fddc68e4-67ac-e5ac-4bc5-b09c806cf123.htm" />
<HelpTOCNode Id="b23b8950-0c31-4ce0-a92a-d7ea72bb195d" Title="CustomDryadLinqSerializerAttribute Properties" Url="html/ee419700-0f92-43f8-3218-d012d674cf28.htm">
<HelpTOCNode Title="SerializerType Property " Url="html/5a4ebe0b-dfae-da42-1c4f-3face32fbe00.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="a3c41797-be90-45d8-a614-38207a47723c" Title="DataProvider Class" Url="html/e30d9823-523d-4504-b321-4c990c768d6d.htm">
<HelpTOCNode Title="DataProvider Constructor " Url="html/59154932-1406-ee03-f7cf-759e92e86ace.htm" />
<HelpTOCNode Id="a4c6a3fb-0c34-4163-b4fb-1f4812ddaea3" Title="DataProvider Methods" Url="html/63b737ac-d6fd-b67e-8fcc-c61cf5e14b3b.htm">
<HelpTOCNode Title="CheckExistence Method " Url="html/7957fe73-07cf-2939-6e5e-a974e62adae3.htm" />
<HelpTOCNode Title="Egress Method " Url="html/76dc89db-d2f7-c6b1-ee72-231a3e1881fc.htm" />
<HelpTOCNode Title="GetMetaData Method " Url="html/03212629-8351-bc14-0918-ef18541c60f6.htm" />
<HelpTOCNode Title="GetStreamInfo Method " Url="html/e491d2f3-4406-ba06-33ac-287ada771687.htm" />
<HelpTOCNode Title="GetTemporaryStreamUri Method " Url="html/893d5450-6706-1bac-214f-1be575dcb4a9.htm" />
<HelpTOCNode Title="Ingress(T) Method " Url="html/3bf58a6c-aa87-cb1f-9aea-1c3c59c898d1.htm" />
<HelpTOCNode Title="ReadData(T) Method " Url="html/b3b5d8dc-09fb-27ab-fbab-b2e58ab970a3.htm" />
<HelpTOCNode Title="Register Method " Url="html/a75dd58d-7100-3ca7-290f-9bdb23548453.htm" />
<HelpTOCNode Title="RewriteUri(T) Method " Url="html/325384d4-2a45-fe6c-b801-212e9d856332.htm" />
</HelpTOCNode>
<HelpTOCNode Id="309b9d47-e06a-4c3c-b28b-6cf3f3f2b1c8" Title="DataProvider Properties" Url="html/cee341d1-e9b4-faf0-3556-8c93401e18be.htm">
<HelpTOCNode Title="PathSeparator Property " Url="html/b858c440-72f0-0ede-cb6e-92651cf1c9e7.htm" />
<HelpTOCNode Title="Scheme Property " Url="html/8c73442d-fbb2-4170-5d0f-2a61d34c83ca.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="fd99344c-0f03-45a1-9796-f9492fa05672" Title="DecomposableAttribute Class" Url="html/49fcc552-44b3-1cd7-9e8d-0182923c9af4.htm">
<HelpTOCNode Title="DecomposableAttribute Constructor " Url="html/43e39b06-dae0-8746-65d9-ad9db2814283.htm" />
<HelpTOCNode Title="DecomposableAttribute Methods" Url="html/1634cb40-8440-9f89-4255-84fa32a3ba65.htm" />
<HelpTOCNode Id="57b808c9-fa17-4d7b-9e11-723374f990f6" Title="DecomposableAttribute Properties" Url="html/dfb2cde5-43c0-b931-a2ce-7dccbeb13bd3.htm">
<HelpTOCNode Title="DecompositionType Property " Url="html/788f4f30-eed5-7aa7-045f-30121da5937e.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="fc1d34c4-7ae6-4ec8-a81d-1ea484e794c0" Title="DryadLinqBinaryReader Class" Url="html/e2f6b120-72cd-d97c-d0c9-9ab1b4abb5b5.htm">
<HelpTOCNode Id="72d2d9b5-ef05-47b1-911c-30eae762a0bd" Title="DryadLinqBinaryReader Methods" Url="html/0f3128d9-99ac-a067-779a-bdc86f46af10.htm">
<HelpTOCNode Title="ReadBool Method " Url="html/2ee81ea8-7bae-c5c3-321d-a2f34f52376e.htm" />
<HelpTOCNode Title="ReadBytes Method " Url="html/40368e39-431f-8596-e970-9996a945e453.htm" />
<HelpTOCNode Title="ReadChar Method " Url="html/f9f3883f-e817-f693-6540-03eaa31f66fe.htm" />
<HelpTOCNode Title="ReadChars Method " Url="html/5523eb71-f765-488d-a0ed-570dcebea4a3.htm" />
<HelpTOCNode Title="ReadCompactInt32 Method " Url="html/521aa3b5-08a2-a367-d7cb-e385573c0327.htm" />
<HelpTOCNode Title="ReadDateTime Method " Url="html/72e693e2-7766-ed09-a7a3-03c782937026.htm" />
<HelpTOCNode Title="ReadDecimal Method " Url="html/74b7a3c4-0a88-c5e0-7fd7-7bcdadb47cf5.htm" />
<HelpTOCNode Title="ReadDouble Method " Url="html/f8a16c4a-7d02-1d28-3f87-0c648c533771.htm" />
<HelpTOCNode Title="ReadGuid Method " Url="html/35d50873-486c-2704-0353-cac33d12a191.htm" />
<HelpTOCNode Title="ReadInt16 Method " Url="html/81938094-e3ac-6406-639d-7bcc0b33af4d.htm" />
<HelpTOCNode Title="ReadInt32 Method " Url="html/154a0be2-f541-8bea-52fc-3e187bd8e65f.htm" />
<HelpTOCNode Title="ReadInt64 Method " Url="html/25da8afc-85f0-7323-cb4c-cb35f137add0.htm" />
<HelpTOCNode Title="ReadRawBytes Method " Url="html/ceab139e-eca2-9ea8-9755-16c24400b59b.htm" />
<HelpTOCNode Title="ReadSByte Method " Url="html/d62a9fff-f98f-8edf-fa8f-b03f52bda6c1.htm" />
<HelpTOCNode Title="ReadSingle Method " Url="html/c9654741-0225-48f8-e9d8-75ccc332e588.htm" />
<HelpTOCNode Title="ReadSqlDateTime Method " Url="html/6e7eaae4-e7a0-8254-068e-271be85cfa07.htm" />
<HelpTOCNode Title="ReadString Method " Url="html/201552ef-4ce6-c229-b88d-da298fdf6b83.htm" />
<HelpTOCNode Title="ReadUByte Method " Url="html/6687a7f4-53a1-0837-c251-f424262f3040.htm" />
<HelpTOCNode Title="ReadUInt16 Method " Url="html/14426d10-5679-395b-3954-e340a465128a.htm" />
<HelpTOCNode Title="ReadUInt32 Method " Url="html/e4431f4b-463e-7b5a-9933-223c364a0397.htm" />
<HelpTOCNode Title="ReadUInt64 Method " Url="html/0e7a8462-0d75-3d0c-7203-579f46b9765a.htm" />
<HelpTOCNode Title="ToString Method " Url="html/74d1e42c-3b08-ea09-0b8b-c841914deab0.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="d719fdb9-f742-42e3-8743-bd9c540eac94" Title="DryadLinqBinaryWriter Class" Url="html/46c3c8f6-eac2-96d5-3ff0-d837669e9557.htm">
<HelpTOCNode Id="ecc7a488-243d-478f-8753-6ab6561ac14b" Title="DryadLinqBinaryWriter Methods" Url="html/1ba7bd47-27c9-8c6f-b5fb-54fdfb0b382a.htm">
<HelpTOCNode Title="ToString Method " Url="html/8b8a247b-5e60-0750-b2e2-7de2d3ed69ee.htm" />
<HelpTOCNode Id="56d3d6dd-a171-4eaa-a3a5-f60696b2fb39" Title="Write Method " Url="html/a520e94d-0d05-1c66-4b54-06b43eac5735.htm">
<HelpTOCNode Title="Write Method (Boolean)" Url="html/06abeb89-68da-4121-d33e-c40a6c5767a0.htm" />
<HelpTOCNode Title="Write Method (Byte)" Url="html/aa695532-3e3b-1286-ced5-1e1f3753076b.htm" />
<HelpTOCNode Title="Write Method (Char)" Url="html/1b0a7d22-63b3-062c-d1e8-dfaccece9749.htm" />
<HelpTOCNode Title="Write Method (SqlDateTime)" Url="html/f5869c52-79e8-da5b-f2fa-20fb34d90f73.htm" />
<HelpTOCNode Title="Write Method (DateTime)" Url="html/4d4d3608-540d-5b19-af53-b9f187c6f50c.htm" />
<HelpTOCNode Title="Write Method (Decimal)" Url="html/cdc8f2c7-4c31-ec38-46f6-4bf27233eb06.htm" />
<HelpTOCNode Title="Write Method (Double)" Url="html/0a7aa40b-fc7c-5446-0fc8-d8747f317d31.htm" />
<HelpTOCNode Title="Write Method (Guid)" Url="html/7ecb3a15-f55f-3310-fb53-e0e709759f67.htm" />
<HelpTOCNode Title="Write Method (Int16)" Url="html/d0dca4d2-0e37-3ff6-4af0-844c6c9e173d.htm" />
<HelpTOCNode Title="Write Method (Int32)" Url="html/34000c36-6f82-54cf-d0bf-53b8e8334db3.htm" />
<HelpTOCNode Title="Write Method (Int64)" Url="html/c2e5ca2e-4f47-3d38-1d50-af015998a17e.htm" />
<HelpTOCNode Title="Write Method (SByte)" Url="html/8171dfcc-ce25-abf5-2260-d221c6e35418.htm" />
<HelpTOCNode Title="Write Method (Single)" Url="html/3a39b53b-f216-92f1-f626-480770156c7d.htm" />
<HelpTOCNode Title="Write Method (String)" Url="html/1440c40e-9c6b-fafe-9688-112547bd19f3.htm" />
<HelpTOCNode Title="Write Method (UInt16)" Url="html/15ad8a07-5fcb-f3d7-1bb6-efd8cc647046.htm" />
<HelpTOCNode Title="Write Method (UInt32)" Url="html/48d4f077-2115-7df5-25c4-08148e84b2e5.htm" />
<HelpTOCNode Title="Write Method (UInt64)" Url="html/8813e2b8-4d84-ad8b-9668-884ab087c455.htm" />
</HelpTOCNode>
<HelpTOCNode Title="WriteBytes Method " Url="html/e865381e-1e90-4f47-894b-6304d0028ef0.htm" />
<HelpTOCNode Title="WriteChars Method " Url="html/21fec768-ab9c-536d-b901-9fbe1ab4b958.htm" />
<HelpTOCNode Title="WriteCompact Method " Url="html/39ca1745-5c7e-3a08-8aa3-ba34af15e044.htm" />
<HelpTOCNode Title="WriteRawBytes Method " Url="html/b1ad85ba-1fa8-77de-a82a-c04f1436060d.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="27f54d5e-867f-49a4-9d7f-256d371134fa" Title="DryadLinqCluster Interface" Url="html/65be1ae5-77ef-6de4-cd1f-586d32aeb383.htm">
<HelpTOCNode Id="dae2651e-3348-436e-9959-5153e8c3c860" Title="DryadLinqCluster Methods" Url="html/f8778722-6751-02a4-98f6-36825c384fd7.htm">
<HelpTOCNode Title="Client Method " Url="html/7f734680-4cdf-d557-8034-45cff61afcbc.htm" />
<HelpTOCNode Title="MakeDefaultUri Method " Url="html/a6795b03-3dc7-3b8e-96af-20c0bf78461a.htm" />
</HelpTOCNode>
<HelpTOCNode Id="027b8d40-ace7-497d-8237-7e9c840349a6" Title="DryadLinqCluster Properties" Url="html/2c8b1ff4-5681-5ffc-451d-2445a2177a8f.htm">
<HelpTOCNode Title="DfsClient Property " Url="html/bca2414d-9eb5-0563-8c12-58b6c58effd0.htm" />
<HelpTOCNode Title="HeadNode Property " Url="html/20b0ceec-2c28-4a0c-f876-d10e8bef2c80.htm" />
<HelpTOCNode Title="Kind Property " Url="html/615c02e9-bed8-c196-6e0a-7db0f9bd5966.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="7f65c43b-65b6-4bb8-9a0d-95fe95ac2c53" Title="DryadLinqContext Class" Url="html/093a0025-a8c4-d1e2-a289-d3863b1a845f.htm">
<HelpTOCNode Id="16fa77be-1329-4bac-a8b3-3a0539fc7b7e" Title="DryadLinqContext Constructor " Url="html/93cf83b3-2042-bd63-c168-e4ef7f7994bc.htm">
<HelpTOCNode Title="DryadLinqContext Constructor (DryadLinqCluster)" Url="html/7eed4ffa-872c-28db-b869-d39cd3277b45.htm" />
<HelpTOCNode Title="DryadLinqContext Constructor (Int32, String)" Url="html/c7d60fb2-867b-688c-9429-3cf46ed008e3.htm" />
<HelpTOCNode Title="DryadLinqContext Constructor (String, PlatformKind)" Url="html/d59f82a7-d32d-f25d-d836-3f4605133e99.htm" />
</HelpTOCNode>
<HelpTOCNode Id="c43d80f9-0209-4002-9e05-bffbf1e40b70" Title="DryadLinqContext Methods" Url="html/0d63a0c3-846a-e70d-6184-23387d3a9160.htm">
<HelpTOCNode Title="AzureAccountKey Method " Url="html/2d28ac74-38d0-f39d-2a5b-879b8089889b.htm" />
<HelpTOCNode Title="ClientVersion Method " Url="html/c441f14e-35fd-3f66-3e98-95bba06f8461.htm" />
<HelpTOCNode Title="Dispose Method " Url="html/adbb7cea-3cd7-a024-d14b-35fc87b257a7.htm" />
<HelpTOCNode Id="3020639d-db95-452b-a642-c01135821277" Title="Equals Method " Url="html/13cce920-2cb3-0614-4d48-34257614f24f.htm">
<HelpTOCNode Title="Equals Method (DryadLinqContext)" Url="html/29860ba9-7870-df8e-9abf-ee6b5441fdcc.htm" />
</HelpTOCNode>
<HelpTOCNode Title="FromEnumerable(T) Method " Url="html/3f22686d-c67f-2db6-f48b-73e16e30652b.htm" />
<HelpTOCNode Id="81294d9f-3b50-4fd3-ab54-19d2d14eeace" Title="FromStore Method " Url="html/bb6433fa-fa92-45b8-b706-1ac9fc37d063.htm">
<HelpTOCNode Title="FromStore(T) Method (String)" Url="html/c000253c-a00e-58a3-d16c-d58bee051b6e.htm" />
<HelpTOCNode Title="FromStore(T) Method (Uri)" Url="html/f7de5c1e-ed36-fdf6-7ee7-ffb58d2ea979.htm" />
</HelpTOCNode>
<HelpTOCNode Title="RegisterAzureAccount Method " Url="html/17d622f1-6799-aeab-3637-9d66a4d79f0b.htm" />
</HelpTOCNode>
<HelpTOCNode Id="b7bbcdec-a622-4f44-a947-c5f1575eb8fe" Title="DryadLinqContext Properties" Url="html/ab8e84a0-8f4c-1d6b-a30a-c7ff0d76094b.htm">
<HelpTOCNode Title="CompileForVertexDebugging Property " Url="html/06266f74-a819-017c-e03f-0f9761a28c52.htm" />
<HelpTOCNode Title="DebugBreak Property " Url="html/0bc5d95a-ef00-1073-ac66-8aa04e76bea4.htm" />
<HelpTOCNode Title="DryadHomeDirectory Property " Url="html/1a3367ed-b951-d562-fbbc-4da581fb22ff.htm" />
<HelpTOCNode Title="EnableMultiThreadingInVertex Property " Url="html/e5330d19-786b-ff5d-45d5-63906af83283.htm" />
<HelpTOCNode Title="EnableSpeculativeDuplication Property " Url="html/446c7fd3-88cd-80be-dc09-2e6a58cc0653.htm" />
<HelpTOCNode Title="ExecutorKind Property " Url="html/2deb1aaa-bfdc-353f-0c97-a8adbb809785.htm" />
<HelpTOCNode Title="ForceGC Property " Url="html/39e61761-eb29-06d9-fb5e-ca83550789ad.htm" />
<HelpTOCNode Title="GraphManagerNode Property " Url="html/248076fc-57c2-c48c-d06a-c9e7bc3c08f9.htm" />
<HelpTOCNode Title="HeadNode Property " Url="html/21b0689d-8e56-2eec-1ee9-f466c31ba722.htm" />
<HelpTOCNode Title="IntermediateDataCompressionScheme Property " Url="html/cae4c54e-1f13-c9b9-2c72-935d9df74655.htm" />
<HelpTOCNode Title="JobEnvironmentVariables Property " Url="html/60213299-6472-65f7-8298-246f575f4519.htm" />
<HelpTOCNode Title="JobFriendlyName Property " Url="html/ba86aa92-5fe3-fac7-c21c-a5a381b27eb3.htm" />
<HelpTOCNode Title="JobMaxNodes Property " Url="html/a09a1cc0-3e1c-6484-eee1-abf6f43e8830.htm" />
<HelpTOCNode Title="JobMinNodes Property " Url="html/9c6a16ea-f074-0481-246b-4a8b93acd4a6.htm" />
<HelpTOCNode Title="JobPassword Property " Url="html/d94766a9-385e-6972-0d01-e0ad496422d3.htm" />
<HelpTOCNode Title="JobRuntimeLimit Property " Url="html/abece889-c5a1-aa62-d2c6-6e371273a12e.htm" />
<HelpTOCNode Title="JobUsername Property " Url="html/024262a5-8d35-80f8-1b76-7a6242ad400b.htm" />
<HelpTOCNode Title="LocalDebug Property " Url="html/bb832ac9-26e2-8dcf-6e10-da1f43571fc8.htm" />
<HelpTOCNode Title="LocalExecution Property " Url="html/f49487bb-3b0f-4054-0c17-ffdca967af5e.htm" />
<HelpTOCNode Title="MatchClientNetFrameworkVersion Property " Url="html/646b413a-cfac-0795-0766-86606d8a5410.htm" />
<HelpTOCNode Title="NodeGroup Property " Url="html/3bcf5415-69d6-0f64-fa4f-fa1ba7cade31.htm" />
<HelpTOCNode Title="OutputDataCompressionScheme Property " Url="html/1b4bb2db-3cb5-2bb3-22b7-d0d1f24eb7a6.htm" />
<HelpTOCNode Title="PartitionUncPath Property " Url="html/e2bc33c7-d205-23d9-e8bc-11f02dfae406.htm" />
<HelpTOCNode Title="PeloponneseHomeDirectory Property " Url="html/9293e769-1a4e-37c1-3236-ef5c533e3e00.htm" />
<HelpTOCNode Title="PlatformKind Property " Url="html/bb90c987-f871-d38d-aced-5665dfb21853.htm" />
<HelpTOCNode Title="ResourcesToAdd Property " Url="html/e25f71a6-3fa2-ac4f-bd57-1edb3da4c44e.htm" />
<HelpTOCNode Title="ResourcesToRemove Property " Url="html/b21ce425-bc26-fe1e-cd75-dee611a38fda.htm" />
<HelpTOCNode Title="RuntimeTraceLevel Property " Url="html/b0be9bd4-afbe-4239-4dbb-6a5405eeb1c1.htm" />
<HelpTOCNode Title="SelectOrderPreserving Property " Url="html/17d9d840-e581-26d0-9aaf-16ca5687adda.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="3affd16f-5f40-4d37-96a5-4be939b021ca" Title="DryadLinqException Class" Url="html/692e14c6-46ed-baaf-6b0f-b36cb74fe616.htm">
<HelpTOCNode Id="51c688c5-6340-4dda-9d88-55ea4cd14f84" Title="DryadLinqException Constructor " Url="html/3ae48862-5298-892f-b8fb-33cbc99551da.htm">
<HelpTOCNode Title="DryadLinqException Constructor (String)" Url="html/7c0701b8-0d6a-ad81-a4f9-4215c1222d35.htm" />
<HelpTOCNode Title="DryadLinqException Constructor (SerializationInfo, StreamingContext)" Url="html/c06ec97a-7ab5-c5f1-fd05-ea2def8d9565.htm" />
<HelpTOCNode Title="DryadLinqException Constructor (String, Exception)" Url="html/854880fe-b894-acd2-dfde-1e2e38eb45af.htm" />
</HelpTOCNode>
<HelpTOCNode Id="ecd49731-1dd1-4c38-a080-17db3297e086" Title="DryadLinqException Methods" Url="html/0d08006d-22e5-4a13-1882-0209adfb201b.htm">
<HelpTOCNode Title="GetObjectData Method " Url="html/677e55a4-eaa4-2887-7257-555abf78300e.htm" />
</HelpTOCNode>
<HelpTOCNode Id="c9bf3a00-baf7-47c4-8473-27738a236440" Title="DryadLinqException Properties" Url="html/7f1a363f-43b1-26c1-963c-7702593b2615.htm">
<HelpTOCNode Title="ErrorCode Property " Url="html/56710010-4bb7-345f-c29b-7eeb00164b0e.htm" />
</HelpTOCNode>
<HelpTOCNode Title="DryadLinqException Events" Url="html/77634612-83a1-5a40-7973-0a7a229e468d.htm" />
</HelpTOCNode>
<HelpTOCNode Id="d5bca3c9-5e92-41f1-a19c-d2affa4240e7" Title="DryadLinqExtension Class" Url="html/d83d6168-067a-d431-aaf5-3d9515eff360.htm">
<HelpTOCNode Id="4f0c0b35-57ba-41ca-b3b4-affe93b494c6" Title="DryadLinqExtension Methods" Url="html/c52687c7-a7dd-36fc-2e87-b01f8d8fb652.htm">
<HelpTOCNode Id="3dadcad0-336b-4a26-bf66-a7bdef4316d7" Title="BroadCast Method " Url="html/cc46bb36-e5ca-8273-a411-4f6b54885a8b.htm">
<HelpTOCNode Title="BroadCast(T) Method (IQueryable(T), Int32)" Url="html/94f192e1-af7a-809b-4939-80890958945b.htm" />
<HelpTOCNode Title="BroadCast(T, T1) Method (IQueryable(T), IQueryable(T1))" Url="html/e05d0998-2488-a010-a996-701d268f5c51.htm" />
</HelpTOCNode>
<HelpTOCNode Title="CheckOrderBy(TSource, TKey) Method " Url="html/895403fc-6f72-5cdc-76c0-ec7fdd32d923.htm" />
<HelpTOCNode Title="CrossProduct(T1, T2, T3) Method " Url="html/d5302869-185b-30a0-e61a-0b95888c6be9.htm" />
<HelpTOCNode Id="f91fc80e-048d-4af0-ae32-93a088d34232" Title="DoWhile Method " Url="html/e453d0ea-ad38-4d2b-20e0-6d48fb35e1b5.htm">
<HelpTOCNode Title="DoWhile(T) Method (IQueryable(T), Func(IQueryable(T), IQueryable(T)), Func(IQueryable(T), IQueryable(T), IQueryable(Boolean)))" Url="html/267f053f-e105-22da-4c71-d345f585b80c.htm" />
<HelpTOCNode Title="DoWhile(T) Method (IQueryable(T), Func(IQueryable(T), IQueryable(T)), Func(IQueryable(T), IQueryable(T), IQueryable(Boolean)), Int32)" Url="html/c9592db7-ab41-e3b6-f10b-2d066022802b.htm" />
</HelpTOCNode>
<HelpTOCNode Title="MapReduce(TSource, TMap, TKey, TResult) Method " Url="html/6613acc6-d94d-28ed-f5ce-28ad5967f7f0.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="9730139f-e26d-4784-ad27-6ad432b847c3" Title="DryadLinqJobInfo Class" Url="html/1286706e-b13a-d4da-31b6-a8e9095728c7.htm">
<HelpTOCNode Id="bc074b78-2de5-4249-b8f9-70480b992fbe" Title="DryadLinqJobInfo Methods" Url="html/a1383e04-1dc0-9ec0-9699-d7532bc3fe18.htm">
<HelpTOCNode Title="CancelJob Method " Url="html/da218c9d-8317-6573-83b6-ac6c2264c47e.htm" />
<HelpTOCNode Title="Wait Method " Url="html/7ffb4590-0ee6-b22c-d148-d971fb69f7c8.htm" />
</HelpTOCNode>
<HelpTOCNode Id="0f23d537-28e7-4eb8-89cd-dccc2cab63a1" Title="DryadLinqJobInfo Properties" Url="html/06fee6ad-aae4-3914-38a5-269ea8886d4a.htm">
<HelpTOCNode Title="JobIds Property " Url="html/6ead0e05-329b-6672-cf9b-b13587e53520.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="2c0016b8-11e1-4f0b-b3c1-7275d462aeba" Title="DryadLinqLog Class" Url="html/85ce5a97-d2bb-bd50-ca58-f017d3769b7c.htm">
<HelpTOCNode Id="ed6837c8-aebc-4b18-b459-612c41cc1d9b" Title="DryadLinqLog Fields" Url="html/a95d75cb-8a35-9b13-14a4-ad132a7215e0.htm">
<HelpTOCNode Title="Level Field" Url="html/185c1846-bd97-af24-9a74-6b5679232636.htm" />
</HelpTOCNode>
<HelpTOCNode Id="2e9ece76-8172-486a-8a08-29226e8c4458" Title="DryadLinqLog Methods" Url="html/540e37fb-9c0d-9095-78c7-778e6938db6d.htm">
<HelpTOCNode Title="AddCritical Method " Url="html/fb0017d4-2002-13a0-845c-9c86972f6404.htm" />
<HelpTOCNode Title="AddError Method " Url="html/6d667751-03f2-3777-378f-dc995f109148.htm" />
<HelpTOCNode Title="AddInfo Method " Url="html/36d5998d-a061-1d6e-c67a-3bc77cf7a1ed.htm" />
<HelpTOCNode Title="AddVerbose Method " Url="html/f8a22de5-0cb8-e869-23e3-4c8053897b46.htm" />
<HelpTOCNode Title="AddWarning Method " Url="html/a78f10bf-2daf-79ab-cb29-8319316d39f7.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="30afead4-f544-4bd8-9891-2fce1cb6ed0b" Title="DryadLinqMetaData Class" Url="html/5e3ae825-91af-0ff7-6ae4-f98f18bd6e58.htm">
<HelpTOCNode Title="DryadLinqMetaData Methods" Url="html/44eb96bb-a236-19b9-5ff3-aff6a5f2728e.htm" />
</HelpTOCNode>
<HelpTOCNode Id="6f46a243-bc7c-47ef-a53e-7d73e1fbb9cc" Title="DryadLinqQueryable Class" Url="html/6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm">
<HelpTOCNode Id="68f0ed10-e600-4e1c-b770-dec9f9991868" Title="DryadLinqQueryable Methods" Url="html/a09bbd62-c781-673f-1297-a71a44f264bf.htm">
<HelpTOCNode Id="5fba7a6e-facb-4a35-8829-289989a5812c" Title="Aggregate Method " Url="html/c0f6970e-9d7d-0f05-99ec-aea86dd3901d.htm">
<HelpTOCNode Title="Aggregate(TSource, TAccumulate) Method (IQueryable(TSource), Expression(Func(TAccumulate)), Expression(Func(TAccumulate, TSource, TAccumulate)))" Url="html/5ce051ae-e7dd-780d-b4c0-36d01ca8c7c5.htm" />
<HelpTOCNode Title="Aggregate(TSource, TAccumulate, TResult) Method (IQueryable(TSource), Expression(Func(TAccumulate)), Expression(Func(TAccumulate, TSource, TAccumulate)), Expression(Func(TAccumulate, TResult)))" Url="html/da78cce5-ac5d-fbb6-a6be-b1fc45f73240.htm" />
</HelpTOCNode>
<HelpTOCNode Id="68c87081-fb4e-46b4-b19b-80d879a827b8" Title="AggregateAsQuery Method " Url="html/6cd1fdb7-0be2-f40e-96a7-266629debe2e.htm">
<HelpTOCNode Title="AggregateAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, TSource, TSource)))" Url="html/96e77bda-5af9-0f63-59c6-cf69a1ae6aad.htm" />
<HelpTOCNode Title="AggregateAsQuery(TSource, TAccumulate) Method (IQueryable(TSource), TAccumulate, Expression(Func(TAccumulate, TSource, TAccumulate)))" Url="html/efef2462-44c3-4c23-335e-654ee84f766f.htm" />
<HelpTOCNode Title="AggregateAsQuery(TSource, TAccumulate, TResult) Method (IQueryable(TSource), TAccumulate, Expression(Func(TAccumulate, TSource, TAccumulate)), Expression(Func(TAccumulate, TResult)))" Url="html/aef29ac6-8d87-4f66-74a9-aa2efc7afcbc.htm" />
</HelpTOCNode>
<HelpTOCNode Title="AllAsQuery(TSource) Method " Url="html/e15e3251-3443-58ca-7e56-f1a9abf0e18e.htm" />
<HelpTOCNode Id="f164f8f5-89e4-41e6-9551-e1c82a91c9f8" Title="AnyAsQuery Method " Url="html/65e4aa00-0ceb-92d0-9f0f-653938c30ace.htm">
<HelpTOCNode Title="AnyAsQuery(TSource) Method (IQueryable(TSource))" Url="html/ff2da2fb-3aa8-6711-b58a-f3ba59d560ee.htm" />
<HelpTOCNode Title="AnyAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Boolean)))" Url="html/a9abc979-77eb-0136-f779-985e2c4fb033.htm" />
</HelpTOCNode>
<HelpTOCNode Id="4e17ad28-49dc-4c2f-8607-35d1da3bb9fb" Title="Apply Method " Url="html/b3becad6-86fb-857e-5ee5-295a2d23b663.htm">
<HelpTOCNode Title="Apply(T1, T2) Method (IQueryable(T1), Expression(Func(IEnumerable(T1), IEnumerable(T2))))" Url="html/dca1d561-3c90-238e-7d31-b4983b0b21f2.htm" />
<HelpTOCNode Title="Apply(T1, T2) Method (IQueryable(T1), IQueryable[], Expression(Func(IEnumerable(T1), IEnumerable[], IEnumerable(T2))))" Url="html/bc38ce8c-386d-bdb4-b3b4-cd001206823c.htm" />
<HelpTOCNode Title="Apply(T1, T2) Method (IQueryable(T1), IQueryable(T1)[], Expression(Func(IEnumerable(T1)[], IEnumerable(T2))))" Url="html/005a51b3-d88c-6ff3-7f8d-fadf5ad2435c.htm" />
<HelpTOCNode Title="Apply(T1, T2, T3) Method (IQueryable(T1), IQueryable(T2), Expression(Func(IEnumerable(T1), IEnumerable(T2), IEnumerable(T3))))" Url="html/81ad61a3-de30-2d6b-fa09-d07c875dc591.htm" />
</HelpTOCNode>
<HelpTOCNode Id="8456d4c6-915c-4611-bc6b-575fdec1542f" Title="ApplyPerPartition Method " Url="html/072ffb1e-75fa-7aa1-fb37-b34393ddcab4.htm">
<HelpTOCNode Title="ApplyPerPartition(T1, T2) Method (IQueryable(T1), Expression(Func(IEnumerable(T1), IEnumerable(T2))))" Url="html/09443df1-c90c-bb8f-a15e-b24dadb75fe3.htm" />
<HelpTOCNode Title="ApplyPerPartition(T1, T2) Method (IQueryable(T1), IQueryable[], Expression(Func(IEnumerable(T1), IEnumerable[], IEnumerable(T2))), Boolean)" Url="html/90ac62ab-f2ae-1077-2afc-ee91c36c9b9d.htm" />
<HelpTOCNode Title="ApplyPerPartition(T1, T2) Method (IQueryable(T1), IQueryable(T1)[], Expression(Func(IEnumerable(T1)[], IEnumerable(T2))), Boolean)" Url="html/e4b24cc1-7a50-2b77-cae2-1a9f5c3e2966.htm" />
<HelpTOCNode Title="ApplyPerPartition(T1, T2, T3) Method (IQueryable(T1), IQueryable(T2), Expression(Func(IEnumerable(T1), IEnumerable(T2), IEnumerable(T3))), Boolean)" Url="html/714968d4-cbe3-f362-8dbc-b3ca0c050592.htm" />
</HelpTOCNode>
<HelpTOCNode Title="ApplyWithPartitionIndex(T1, T2) Method " Url="html/a88c1234-7c0c-d694-11e5-b47c155fdc94.htm" />
<HelpTOCNode Id="9bc5c67f-2b89-4956-9b74-5012c84b38e1" Title="AssumeHashPartition Method " Url="html/0fe358e3-5219-60c4-1a15-c77bd51338f7.htm">
<HelpTOCNode Title="AssumeHashPartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)))" Url="html/716d5b8d-5259-d16d-b992-b3fa53e3c9d1.htm" />
<HelpTOCNode Title="AssumeHashPartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), IEqualityComparer(TKey))" Url="html/788057c6-6e61-982a-d575-543e2522121e.htm" />
</HelpTOCNode>
<HelpTOCNode Id="c9a28441-b422-4424-82d3-129a4b99b1b6" Title="AssumeOrderBy Method " Url="html/98cee862-bd46-4244-cdbe-0783a9474bd5.htm">
<HelpTOCNode Title="AssumeOrderBy(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), Boolean)" Url="html/38eade5e-69de-fc88-75ce-469053a87f53.htm" />
<HelpTOCNode Title="AssumeOrderBy(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), IComparer(TKey), Boolean)" Url="html/88c80170-22c6-d017-acec-a28879b41e84.htm" />
</HelpTOCNode>
<HelpTOCNode Id="0261a510-70ee-48f2-b367-a4c0742c3be6" Title="AssumeRangePartition Method " Url="html/05317da6-b361-379e-397d-e34d85c6856d.htm">
<HelpTOCNode Title="AssumeRangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), Boolean)" Url="html/5e7665b9-2edd-f06b-379f-2f6b84970870.htm" />
<HelpTOCNode Title="AssumeRangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), TKey[])" Url="html/f4bf1d22-a963-dab9-a715-09ec09cb78d0.htm" />
<HelpTOCNode Title="AssumeRangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), IComparer(TKey), Boolean)" Url="html/750d7563-286e-f1ce-7a49-320d5e20911a.htm" />
<HelpTOCNode Title="AssumeRangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), TKey[], IComparer(TKey))" Url="html/310f517f-7d39-3fcd-42d8-a30e2f015c94.htm" />
</HelpTOCNode>
<HelpTOCNode Id="b8a021d0-5fef-4672-ab72-b1d8ab76a2a6" Title="AverageAsQuery Method " Url="html/1b4e9327-9b61-e353-0051-d36bb399ce3e.htm">
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Decimal))" Url="html/a173f444-9a31-9410-db35-8c5e3e268910.htm" />
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Double))" Url="html/796dc26e-5648-e8cf-a910-ca39c7dc6d94.htm" />
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Int32))" Url="html/092201f1-5901-0976-887e-a1f961caaf66.htm" />
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Int64))" Url="html/1b00f0ed-5c36-e0bc-b09e-225e2e7de9b0.htm" />
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Nullable(Decimal)))" Url="html/10c1f055-1b96-8c5a-c46d-b6171ae2f107.htm" />
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Nullable(Double)))" Url="html/86c1b238-cac0-d5f2-07e3-9054956eb272.htm" />
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Nullable(Int32)))" Url="html/c3efc4c1-93d6-e2ce-a91f-a88cc0666737.htm" />
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Nullable(Int64)))" Url="html/c1fb0f6e-a96d-a637-b499-e9c8a0dfa1e2.htm" />
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Nullable(Single)))" Url="html/4f68dc50-9c07-841c-638a-87aec0028d1e.htm" />
<HelpTOCNode Title="AverageAsQuery Method (IQueryable(Single))" Url="html/81f304e8-8a83-6a48-7f8a-d7ddeb0b0fbb.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Decimal)))" Url="html/78f88c4a-9b6f-571e-a40f-3fffabec3586.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Double)))" Url="html/fe2b9f3f-4da2-85d6-9421-3b8d871df3fc.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Int32)))" Url="html/31d151f8-e75b-d478-794a-6bf741ce66c8.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Int64)))" Url="html/62df91df-43f0-e2e9-37b5-076ba91ddece.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Decimal))))" Url="html/68f625d8-0128-6e0e-aa88-fc109e27971d.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Double))))" Url="html/2da12729-af4c-ce8b-35af-0812a24db77e.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Int32))))" Url="html/6e1dc23f-061a-4698-de34-53b4cb975063.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Int64))))" Url="html/3e972e3e-3080-8c4c-f372-195281dfbc53.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Single))))" Url="html/5fa81715-d54e-e16c-f4a9-81af44d67811.htm" />
<HelpTOCNode Title="AverageAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Single)))" Url="html/43b7325b-3c83-5705-be5e-7c7561f33bcc.htm" />
</HelpTOCNode>
<HelpTOCNode Id="d609968a-9add-4e47-be4a-80393cf663c8" Title="ContainsAsQuery Method " Url="html/79406ffb-6664-636a-bd34-d80965d38172.htm">
<HelpTOCNode Title="ContainsAsQuery(TSource) Method (IQueryable(TSource), TSource)" Url="html/f5e0d6a7-dab3-246a-1374-c352c2cc95ab.htm" />
<HelpTOCNode Title="ContainsAsQuery(TSource) Method (IQueryable(TSource), TSource, IEqualityComparer(TSource))" Url="html/a70f28e9-7898-7b06-cdc9-1ac10ae0b9a5.htm" />
</HelpTOCNode>
<HelpTOCNode Id="81866a7c-8d7f-4aa3-bad4-9d93c0b15bf3" Title="CountAsQuery Method " Url="html/b26b8681-c9eb-e216-6c54-d34454d3dd80.htm">
<HelpTOCNode Title="CountAsQuery(TSource) Method (IQueryable(TSource))" Url="html/b77739be-8bda-d64b-4dbb-01c41b1ae9fc.htm" />
<HelpTOCNode Title="CountAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Boolean)))" Url="html/2d841b14-7689-159f-de0d-9a875506fd33.htm" />
</HelpTOCNode>
<HelpTOCNode Title="DoWhile(T) Method " Url="html/d0d82a69-b3db-d19d-8def-edc5457aca2e.htm" />
<HelpTOCNode Id="3a94069c-caca-42bb-b0be-c5853532acbf" Title="FirstAsQuery Method " Url="html/9af8461f-bf9b-b3fe-d9f0-0e03dffb3a85.htm">
<HelpTOCNode Title="FirstAsQuery(TSource) Method (IQueryable(TSource))" Url="html/596279c8-3cec-4a87-cc37-c6d8207c5a48.htm" />
<HelpTOCNode Title="FirstAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Boolean)))" Url="html/0b5ec7e8-a29f-e104-b8c6-56d15489af32.htm" />
</HelpTOCNode>
<HelpTOCNode Id="977add3e-a4b0-4308-8aa6-4a3d47ae0a7d" Title="Fork Method " Url="html/7f3c4d7e-cc6a-3e04-2d17-ad817bc05ccb.htm">
<HelpTOCNode Title="Fork(T, R1, R2) Method (IQueryable(T), Expression(Func(IEnumerable(T), IEnumerable(ForkTuple(R1, R2)))))" Url="html/7efe26f6-2ba5-a153-1022-ecec752e281d.htm" />
<HelpTOCNode Title="Fork(T, R1, R2, R3) Method (IQueryable(T), Expression(Func(IEnumerable(T), IEnumerable(ForkTuple(R1, R2, R3)))))" Url="html/ee0cde94-6965-9695-b25e-1ca1db55bb78.htm" />
<HelpTOCNode Title="Fork(T, R1, R2) Method (IQueryable(T), Expression(Func(T, ForkTuple(R1, R2))))" Url="html/cb9b0765-8920-603b-6b65-7b61153384f8.htm" />
<HelpTOCNode Title="Fork(T, R1, R2, R3) Method (IQueryable(T), Expression(Func(T, ForkTuple(R1, R2, R3))))" Url="html/6058d142-d1ca-63d1-73e1-43d62118b44c.htm" />
<HelpTOCNode Title="Fork(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), TKey[])" Url="html/c0dd673a-3a38-6030-54f0-dab156c26679.htm" />
</HelpTOCNode>
<HelpTOCNode Id="122afe23-3672-4dea-9c09-95364422334c" Title="HashPartition Method " Url="html/1d3ec0f6-3549-a859-323d-eaa072b59745.htm">
<HelpTOCNode Title="HashPartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)))" Url="html/c4c35f69-39cf-eb7b-6eb5-cca89036da1e.htm" />
<HelpTOCNode Title="HashPartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), IEqualityComparer(TKey))" Url="html/63cd5e2d-5e8a-0f8c-44c7-2a22fc2bc534.htm" />
<HelpTOCNode Title="HashPartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), Int32)" Url="html/84c12c93-d339-8f2f-446d-3a528a2e0927.htm" />
<HelpTOCNode Title="HashPartition(TSource, TKey, TResult) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), Expression(Func(TSource, TResult)))" Url="html/3b0442d4-869b-f0d6-5bb5-372e3d87af19.htm" />
<HelpTOCNode Title="HashPartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), IEqualityComparer(TKey), Int32)" Url="html/7e999dcc-cf11-288a-27d8-bc029e4152a8.htm" />
<HelpTOCNode Title="HashPartition(TSource, TKey, TResult) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), IEqualityComparer(TKey), Expression(Func(TSource, TResult)))" Url="html/ee049bec-6bfb-fb7f-3707-a411d85f477a.htm" />
</HelpTOCNode>
<HelpTOCNode Id="b6c0461a-c172-481d-b72e-2692c5152ec0" Title="LastAsQuery Method " Url="html/5b19d6a4-77d1-1e89-dfc2-d28d904f0856.htm">
<HelpTOCNode Title="LastAsQuery(TSource) Method (IQueryable(TSource))" Url="html/29d41f10-4912-b1e5-7e48-1e2c9ba3863a.htm" />
<HelpTOCNode Title="LastAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Boolean)))" Url="html/ddcd8c8c-d6d2-b5a1-9787-5b4b8ce4e955.htm" />
</HelpTOCNode>
<HelpTOCNode Id="6c6703b4-8fa3-4360-929a-e31267a9010f" Title="LongCountAsQuery Method " Url="html/6bc2eb5c-4e5c-228f-d4e6-420163ae5b5d.htm">
<HelpTOCNode Title="LongCountAsQuery(TSource) Method (IQueryable(TSource))" Url="html/340e9506-802c-808f-6e03-21a9594cd219.htm" />
<HelpTOCNode Title="LongCountAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Boolean)))" Url="html/89ef2df9-d9b6-a0c1-cbcf-bbe538329437.htm" />
</HelpTOCNode>
<HelpTOCNode Title="LongSelect(TSource, TResult) Method " Url="html/4479c8c4-d7b5-0a9a-f6ad-740afffa2969.htm" />
<HelpTOCNode Id="548bb6b9-c676-47ac-ac7d-5780f5431872" Title="LongSelectMany Method " Url="html/241043ae-a90b-3cca-80f6-71bc570453fd.htm">
<HelpTOCNode Title="LongSelectMany(TSource, TResult) Method (IQueryable(TSource), Expression(Func(TSource, Int64, IEnumerable(TResult))))" Url="html/b06131d8-0ce4-6292-8d07-3a97f0b13626.htm" />
<HelpTOCNode Title="LongSelectMany(TSource, TCollection, TResult) Method (IQueryable(TSource), Expression(Func(TSource, Int64, IEnumerable(TCollection))), Expression(Func(TSource, TCollection, TResult)))" Url="html/007a2597-5856-ead6-c4c0-24afeb3c146f.htm" />
</HelpTOCNode>
<HelpTOCNode Title="LongSkipWhile(TSource) Method " Url="html/c5b7a8bf-193f-1e84-706e-a9ffc74d41a3.htm" />
<HelpTOCNode Title="LongTakeWhile(TSource) Method " Url="html/1361c8c8-c04b-e5f2-6112-9f62b5af8fcb.htm" />
<HelpTOCNode Title="LongWhere(TSource) Method " Url="html/a9e6f3c2-457f-4d7d-af58-7a4827a47f92.htm" />
<HelpTOCNode Id="978d7447-9975-4976-9401-e86eec276e38" Title="MaxAsQuery Method " Url="html/f4b36863-6a66-5778-2fae-56e7eac50834.htm">
<HelpTOCNode Title="MaxAsQuery(TSource) Method (IQueryable(TSource))" Url="html/a1e96bef-d0a1-e613-50bd-b045dc706b87.htm" />
<HelpTOCNode Title="MaxAsQuery(TSource, TResult) Method (IQueryable(TSource), Expression(Func(TSource, TResult)))" Url="html/e259305c-5491-6008-ed03-acfc4e7b4417.htm" />
</HelpTOCNode>
<HelpTOCNode Id="87b0126f-dbe5-4d4c-be1c-7b172dd0610f" Title="MinAsQuery Method " Url="html/9d6119ab-121a-148e-3170-b5b252aaef07.htm">
<HelpTOCNode Title="MinAsQuery(TSource) Method (IQueryable(TSource))" Url="html/f41ccdbb-3d80-1a38-0075-bc3aac3b67f9.htm" />
<HelpTOCNode Title="MinAsQuery(TSource, TResult) Method (IQueryable(TSource), Expression(Func(TSource, TResult)))" Url="html/c620fa3a-4b7d-d7b7-2299-9e71373d64e2.htm" />
</HelpTOCNode>
<HelpTOCNode Id="1b252144-6695-4772-a399-25a245013f4f" Title="RangePartition Method " Url="html/f90db211-91a6-9160-f0b1-f7b5d6267e24.htm">
<HelpTOCNode Title="RangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)))" Url="html/b925e80f-05f7-a57a-eb58-5c3dd9ed285c.htm" />
<HelpTOCNode Title="RangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), Boolean)" Url="html/e5bb9a6d-135c-fd92-b508-04ec0bf9cd92.htm" />
<HelpTOCNode Title="RangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), Int32)" Url="html/93567120-1e64-cbdf-9cea-7fc9836b83d8.htm" />
<HelpTOCNode Title="RangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), TKey[])" Url="html/74f854ce-35b3-5274-ea09-98ac1f1a8f05.htm" />
<HelpTOCNode Title="RangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), Boolean, Int32)" Url="html/3bc565ad-e271-6d9d-3049-d1dd5fb4867e.htm" />
<HelpTOCNode Title="RangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), IComparer(TKey), Boolean)" Url="html/c3353f55-b1a8-262a-e8f4-83538eee40c1.htm" />
<HelpTOCNode Title="RangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), TKey[], IComparer(TKey))" Url="html/5f576fb7-17b2-45a4-1ba6-a338306dc66c.htm" />
<HelpTOCNode Title="RangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), IComparer(TKey), Boolean, Int32)" Url="html/883b44ef-3226-b906-c30a-7cd877c37dd2.htm" />
<HelpTOCNode Title="RangePartition(TSource, TKey) Method (IQueryable(TSource), Expression(Func(TSource, TKey)), TKey[], IComparer(TKey), Boolean)" Url="html/5060dac8-f347-dd7c-fb6d-5080979247a5.htm" />
</HelpTOCNode>
<HelpTOCNode Id="c84508d3-26ec-4ad4-bdac-ed1a9821d884" Title="SequenceEqualAsQuery Method " Url="html/1ff40fab-862b-4871-b578-5a8c908f1294.htm">
<HelpTOCNode Title="SequenceEqualAsQuery(TSource) Method (IQueryable(TSource), IEnumerable(TSource))" Url="html/6b7ffd31-3415-fde1-d312-04dfc9a5f77c.htm" />
<HelpTOCNode Title="SequenceEqualAsQuery(TSource) Method (IQueryable(TSource), IEnumerable(TSource), IEqualityComparer(TSource))" Url="html/918921e8-53b4-e2f1-7ae5-1f53de93c470.htm" />
</HelpTOCNode>
<HelpTOCNode Id="8cb6c8f1-6162-4dc7-ab44-4d407f5f026a" Title="SingleAsQuery Method " Url="html/f8e0a412-97bc-99bb-d919-03e404d236b8.htm">
<HelpTOCNode Title="SingleAsQuery(TSource) Method (IQueryable(TSource))" Url="html/84caf4f5-b0e4-74f6-d963-aa1ca5938162.htm" />
<HelpTOCNode Title="SingleAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Boolean)))" Url="html/2149a903-bb1b-f36d-b008-0104996ad0b2.htm" />
</HelpTOCNode>
<HelpTOCNode Title="SlidingWindow(T1, T2) Method " Url="html/cf28149d-3737-b5e6-0fdb-8ad0d0a6a31b.htm" />
<HelpTOCNode Id="83e1b214-2a38-461d-a6a7-b36754244156" Title="Submit Method " Url="html/87ba860b-6c3b-dafe-6d00-0f2a05636b0c.htm">
<HelpTOCNode Title="Submit Method (IQueryable[])" Url="html/49319178-53c6-777c-db3c-363ef3ba713b.htm" />
<HelpTOCNode Title="Submit(TSource) Method (IQueryable(TSource))" Url="html/982efeb1-ac64-8ff8-0206-777c64143396.htm" />
</HelpTOCNode>
<HelpTOCNode Id="e09642de-24e1-4bb4-b815-75d2ea9281e4" Title="SubmitAndWait Method " Url="html/afeb2773-3e8d-61d5-52be-00d2323d69c2.htm">
<HelpTOCNode Title="SubmitAndWait Method (IQueryable[])" Url="html/1c211df7-7ad1-840b-c9e5-09655a6b3714.htm" />
<HelpTOCNode Title="SubmitAndWait(TSource) Method (IQueryable(TSource))" Url="html/d45d4d97-7905-ce0f-3fa8-869ce07618aa.htm" />
</HelpTOCNode>
<HelpTOCNode Id="8979914f-c4c1-4c5d-92df-41273f4fa45a" Title="SumAsQuery Method " Url="html/f7353d8f-b53e-4485-3a32-a47d26df83b2.htm">
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Decimal))" Url="html/407d2527-770f-e326-302a-08a588a1daf0.htm" />
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Double))" Url="html/c801b334-7ddf-00e4-720c-24997727b5d8.htm" />
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Int32))" Url="html/64047514-813f-1713-31c4-0abd6abdc91d.htm" />
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Int64))" Url="html/e8736e02-cf01-62af-5564-e1433e51d931.htm" />
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Nullable(Decimal)))" Url="html/61274f42-b4e5-5479-ead0-68efab6b7d88.htm" />
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Nullable(Double)))" Url="html/edab1cc4-df6b-a0e6-ac1c-aa090439ea5b.htm" />
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Nullable(Int32)))" Url="html/569b8102-50a9-8bcb-d31c-9cce486ffe27.htm" />
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Nullable(Int64)))" Url="html/9f5e1cf3-9397-db9d-93aa-b4a6c54e7683.htm" />
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Nullable(Single)))" Url="html/de199fbd-fd52-83f1-6605-1dd8bdc344b4.htm" />
<HelpTOCNode Title="SumAsQuery Method (IQueryable(Single))" Url="html/fe23cc18-a9ed-e8dc-486d-6eb432ed678c.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Decimal)))" Url="html/23a66ef5-c8d3-e343-8da8-d0143087de55.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Double)))" Url="html/d0bd94b3-9f60-0bdc-9570-a351b6fdd984.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Int32)))" Url="html/815539da-44d3-6f8c-914c-1015bc0489c3.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Int64)))" Url="html/fac7312b-dad8-df66-30e7-260990cbf990.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Decimal))))" Url="html/75b2011d-c769-2039-d36a-4763831c7376.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Double))))" Url="html/862da0de-392f-dc39-4bc9-31af392e2786.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Int32))))" Url="html/1ada303f-80bd-0b5c-656e-d984ddee2d16.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Int64))))" Url="html/39e9e2f9-d97a-1571-51e1-8b3f6b60c4c8.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Single))))" Url="html/dbb05e44-bc2d-3de2-74fa-223d17988e6c.htm" />
<HelpTOCNode Title="SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Single)))" Url="html/6dc77fa3-12cd-84ed-f44f-63a1998fa91c.htm" />
</HelpTOCNode>
<HelpTOCNode Id="e0d09be0-70b7-4818-9c33-22632a334371" Title="ToStore Method " Url="html/dfd04264-0973-a546-1ef7-4971c13a4d71.htm">
<HelpTOCNode Title="ToStore(TSource) Method (IQueryable(TSource), String, Boolean)" Url="html/292965e4-9552-d4c2-7aad-4399a5f7b7b9.htm" />
<HelpTOCNode Title="ToStore(TSource) Method (IQueryable(TSource), Uri, Boolean)" Url="html/4d8f9c65-fcdb-aa55-9e46-530c97c98518.htm" />
</HelpTOCNode>
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="c12d99e1-7d0a-4620-ac21-32d5901f0251" Title="DryadLinqStreamInfo Class" Url="html/562bb8ee-21e0-0f88-c57c-64a244256648.htm">
<HelpTOCNode Title="DryadLinqStreamInfo Constructor " Url="html/6a718b44-1263-26e8-e829-1655a3522217.htm" />
<HelpTOCNode Title="DryadLinqStreamInfo Methods" Url="html/ae015e95-d81a-201e-6de7-510487303ba6.htm" />
<HelpTOCNode Id="da76239e-7883-4e82-90b0-ebb9174fe414" Title="DryadLinqStreamInfo Properties" Url="html/95c22eeb-6433-b0f9-9157-956dfd5a95c4.htm">
<HelpTOCNode Title="DataSize Property " Url="html/da53c4f0-d5ab-702f-e073-ec9b6ea2f82b.htm" />
<HelpTOCNode Title="PartitionCount Property " Url="html/7e6c6d5f-35f2-347f-167b-f0ca16f56723.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Title="ExecutorKind Enumeration" Url="html/e652bfe9-c973-2744-87c1-e63cf9db4f56.htm" />
<HelpTOCNode Id="7a0f4ec9-e179-441f-9221-8abf6c890f27" Title="ForkTuple(T1, T2) Structure" Url="html/28af6b37-22b3-448f-cf9f-ea15b5aa90d6.htm">
<HelpTOCNode Title="ForkTuple(T1, T2) Constructor " Url="html/d0234465-a912-65ea-e636-04db408de8f1.htm" />
<HelpTOCNode Id="389f6c66-edd8-4777-af3b-bbf36901f0a8" Title="ForkTuple(T1, T2) Methods" Url="html/c1a6a21b-2155-acfa-4bd7-1243fe9fba30.htm">
<HelpTOCNode Id="c87b7083-b716-4851-8d9d-443704271afb" Title="Equals Method " Url="html/7ce32f0b-e400-2a96-52b0-65238b7eb283.htm">
<HelpTOCNode Title="Equals Method (ForkTuple(T1, T2))" Url="html/f8959d6f-d36f-70dc-5fb4-71346b35319f.htm" />
</HelpTOCNode>
<HelpTOCNode Title="GetHashCode Method " Url="html/e33687f3-591a-54e8-2a3d-bd80ccac7e76.htm" />
</HelpTOCNode>
<HelpTOCNode Id="80c8f5cb-daa3-4011-a2c4-59e913a43b83" Title="ForkTuple(T1, T2) Properties" Url="html/76957065-5630-1667-884c-3ce88290abd8.htm">
<HelpTOCNode Title="First Property " Url="html/6b32278a-6d75-3882-83b0-0e33a98fb7c8.htm" />
<HelpTOCNode Title="HasFirst Property " Url="html/c93f543e-84c2-3fe0-95c2-0e2b81b2e1e2.htm" />
<HelpTOCNode Title="HasSecond Property " Url="html/d33e8f73-7da3-dbdd-4617-4ea75998fdab.htm" />
<HelpTOCNode Title="Second Property " Url="html/e91d270e-8169-d4e6-5c47-e01fddea6886.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="e3e0fc28-f1d1-4be0-b9a0-dd6b1831a93f" Title="ForkTuple(T1, T2, T3) Structure" Url="html/07206258-2e2e-6aa3-4c79-0c0674875849.htm">
<HelpTOCNode Title="ForkTuple(T1, T2, T3) Constructor " Url="html/83e9427c-d320-6f1e-69a7-07bf990f5552.htm" />
<HelpTOCNode Id="26272fdc-76d6-4bba-b176-4bf59a8773f3" Title="ForkTuple(T1, T2, T3) Methods" Url="html/35cb81e7-7eae-c2c8-5bda-4c84f96bf377.htm">
<HelpTOCNode Id="3fb61638-28a3-4083-9916-6274dd87e23c" Title="Equals Method " Url="html/7b13d2e9-7ea4-d4aa-20da-c76cb5dfa135.htm">
<HelpTOCNode Title="Equals Method (ForkTuple(T1, T2, T3))" Url="html/c4b2ccbe-fcea-9746-7d03-7deea5de820e.htm" />
</HelpTOCNode>
<HelpTOCNode Title="GetHashCode Method " Url="html/56301ca8-b00b-32b5-1da3-bba21860db99.htm" />
</HelpTOCNode>
<HelpTOCNode Id="6d7f2f93-7ac7-4063-a64e-577b8222d000" Title="ForkTuple(T1, T2, T3) Properties" Url="html/aed82465-569c-2eaf-b541-2e9cb274c89a.htm">
<HelpTOCNode Title="First Property " Url="html/3ede29b7-a419-b762-7c5f-f617c3ad4ea0.htm" />
<HelpTOCNode Title="HasFirst Property " Url="html/4e4b1e20-e630-adfc-12f4-e999aa73e5d3.htm" />
<HelpTOCNode Title="HasSecond Property " Url="html/9258db36-5e75-9efc-e607-ef6f5ba67a4a.htm" />
<HelpTOCNode Title="HasThird Property " Url="html/fdcf7716-268c-05d8-c969-99fcc6611106.htm" />
<HelpTOCNode Title="Second Property " Url="html/86d97af6-9c8c-ccbb-4a2b-386657c1a9fe.htm" />
<HelpTOCNode Title="Third Property " Url="html/c90df8c7-3a30-7c79-ce29-c37b9def4567.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="3622df84-e51a-4752-9181-bba6a7bcd66b" Title="ForkValue(T) Structure" Url="html/3d9c6034-3028-09ed-9ec6-6af9101c0f52.htm">
<HelpTOCNode Title="ForkValue(T) Constructor " Url="html/891a0064-76fe-27f2-836d-c59419bf7956.htm" />
<HelpTOCNode Id="7983049a-9caf-47a0-b7f1-ad2f8c202232" Title="ForkValue(T) Methods" Url="html/2c7c3b94-2666-db95-15bd-37e0f37f68a9.htm">
<HelpTOCNode Id="59892495-0d8a-4a90-8e93-d4d41600d337" Title="Equals Method " Url="html/277744cf-bbc7-5ee4-c3b2-7f4052963441.htm">
<HelpTOCNode Title="Equals Method (ForkValue(T))" Url="html/fd5bf5ee-af4b-9a5f-582f-89fdb53dee75.htm" />
</HelpTOCNode>
<HelpTOCNode Title="GetHashCode Method " Url="html/1418da77-2d3c-0a21-3c41-ba2ea3abb075.htm" />
</HelpTOCNode>
<HelpTOCNode Id="b2c5007f-79ac-41a8-8ef6-39198f9103b9" Title="ForkValue(T) Properties" Url="html/8f1173ea-7a80-f5d2-a86a-c9817ff59ba4.htm">
<HelpTOCNode Title="HasValue Property " Url="html/8ebdf81f-127f-f1d9-4eb8-1cab9ef04768.htm" />
<HelpTOCNode Title="Value Property " Url="html/901dcf86-c65c-a976-7b3b-e334fc1d93cf.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="edd5fd20-6d29-417c-9d47-6bba43872ede" Title="GenericAssociative(TAssoc, TAccumulate) Class" Url="html/a49d01fb-8518-8fe8-02b4-7fd06cec7ed4.htm">
<HelpTOCNode Id="9dfff814-0e92-4633-bc91-54f95941a1c1" Title="GenericAssociative(TAssoc, TAccumulate) Methods" Url="html/e025b172-58a2-5b6b-48c0-0c33ee321a3d.htm">
<HelpTOCNode Title="RecursiveAccumulate Method " Url="html/f8d20d20-bbec-a340-6200-48866b0ac7d0.htm" />
<HelpTOCNode Title="Seed Method " Url="html/97df1d63-3677-417d-8007-20899312a1a3.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="e57e6175-d725-4527-81fd-cd9b67f9b0a1" Title="GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Class" Url="html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm">
<HelpTOCNode Id="1bee3d8b-6a08-4dde-830a-212f47f119f5" Title="GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Methods" Url="html/09b7f762-48da-5a16-77e3-8b841c6f83ea.htm">
<HelpTOCNode Title="Accumulate Method " Url="html/ffa4b6ac-5e03-29aa-ec10-7aab8893edd2.htm" />
<HelpTOCNode Title="FinalReduce Method " Url="html/982d658a-3590-02e2-e86c-5d1603e2ff7b.htm" />
<HelpTOCNode Title="Initialize Method " Url="html/7ad863dd-2b05-4189-31b3-b8e3fe344c31.htm" />
<HelpTOCNode Title="RecursiveAccumulate Method " Url="html/032e436e-efdc-433f-654c-75ce93cdb5d2.htm" />
<HelpTOCNode Title="Seed Method " Url="html/3f7c6b9f-b02f-4152-9d67-ce663a9710f7.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="8768a6e5-25bc-4ded-9999-8792f8fec1dc" Title="IAssociative(TAccumulate) Interface" Url="html/8ac439be-5f1e-cce5-eea2-11de7aa46929.htm">
<HelpTOCNode Id="e80592b8-698a-4473-96eb-db621d41532e" Title="IAssociative(TAccumulate) Methods" Url="html/5a59b1a7-a6fe-8353-948c-6aadb3e190e0.htm">
<HelpTOCNode Title="RecursiveAccumulate Method " Url="html/262f7961-aa38-363a-4625-9557322dc386.htm" />
<HelpTOCNode Title="Seed Method " Url="html/5d92709d-0db3-49af-421e-4a66042819b0.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="45756523-f4cd-4f8e-8ca0-f4547fd1aece" Title="IDecomposable(TSource, TAccumulate, TResult) Interface" Url="html/28f10369-ddd1-2090-d4e2-16e5c7b34795.htm">
<HelpTOCNode Id="c35e6de7-b655-4e04-add5-17dd314c5c53" Title="IDecomposable(TSource, TAccumulate, TResult) Methods" Url="html/3390d7bc-a985-7d93-b154-971bf1dfd33f.htm">
<HelpTOCNode Title="Accumulate Method " Url="html/f7141b46-f316-6b6b-13dd-b38da64deda1.htm" />
<HelpTOCNode Title="FinalReduce Method " Url="html/a3a06fa4-5372-405f-85b2-947afeb79561.htm" />
<HelpTOCNode Title="Initialize Method " Url="html/a65ccdbb-51b0-b1a1-1e8d-ccfd30971385.htm" />
<HelpTOCNode Title="RecursiveAccumulate Method " Url="html/507ffa9d-4bfa-1702-0a7f-918fd4a42345.htm" />
<HelpTOCNode Title="Seed Method " Url="html/51aa8653-daf8-c05e-f659-99046cd343ed.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="78cd832c-be0d-4572-ae37-d34188ef414d" Title="IDryadLinqSerializer(T) Interface" Url="html/21f7cc37-f1d3-ac9c-873a-e5e80c2b6f3c.htm">
<HelpTOCNode Id="aeeed445-71d0-4f4e-8528-fa34503d510f" Title="IDryadLinqSerializer(T) Methods" Url="html/2c560717-db20-fd22-d9b5-7582fe3cdf36.htm">
<HelpTOCNode Title="Read Method " Url="html/2bfc09c6-4fdc-09e9-91ef-8aa7972d8966.htm" />
<HelpTOCNode Title="Write Method " Url="html/db0e2036-b46e-fba5-8502-62da411025b2.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="1f5fea90-760a-4bc5-99ce-792e662e08ab" Title="IKeyedMultiQueryable(T, K) Interface" Url="html/721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm">
<HelpTOCNode Title="IKeyedMultiQueryable(T, K) Methods" Url="html/44091b80-27bf-7412-5652-95460aecbab8.htm" />
<HelpTOCNode Id="42a9c8b9-ea51-4fd9-8b5f-96af66ad95ec" Title="IKeyedMultiQueryable(T, K) Properties" Url="html/655dc54c-7773-7fab-3311-a7d07d84b414.htm">
<HelpTOCNode Title="Item Property " Url="html/15c1c542-c2b5-4b49-86c9-d939b43ae22e.htm" />
<HelpTOCNode Title="Keys Property " Url="html/22264f86-180e-2fa8-6fe6-791984d633a7.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="1c7ee84e-3ca2-4fab-9ddc-5bc8487629d9" Title="IMultiQueryable Interface" Url="html/1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89.htm">
<HelpTOCNode Id="16c3ff55-4c93-408d-850d-1f4d4b8fe1c0" Title="IMultiQueryable Methods" Url="html/740766d6-28e1-ef88-071b-b0e3cc7e4d17.htm">
<HelpTOCNode Title="ElementType Method " Url="html/b2f8d418-599c-d187-da9e-38de1cb3b178.htm" />
</HelpTOCNode>
<HelpTOCNode Id="00d0f005-1a60-455e-8026-3661205432ae" Title="IMultiQueryable Properties" Url="html/4253bc32-68d5-de96-33df-baedee2a46d7.htm">
<HelpTOCNode Title="Expression Property " Url="html/3406300d-cd1d-f797-61e3-7d00b2abd387.htm" />
<HelpTOCNode Title="NumberOfInputs Property " Url="html/f6c4c853-03b8-57aa-cf35-5e7884f6d55b.htm" />
<HelpTOCNode Title="Provider Property " Url="html/da94daa0-4711-ab61-cba5-c5474946b285.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="66b2f387-7da4-4fa3-a0a4-8457ce186119" Title="IMultiQueryable(T1, T2) Interface" Url="html/2f4da221-3f06-8d95-c5ef-20eef2574124.htm">
<HelpTOCNode Title="IMultiQueryable(T1, T2) Methods" Url="html/c8738882-e0f7-d2b6-5abb-d06f70250454.htm" />
<HelpTOCNode Id="1076f872-5ca3-41bd-9e6d-5f381a7baf94" Title="IMultiQueryable(T1, T2) Properties" Url="html/e9ec9d82-ea4a-a9c4-68ea-23b4cc77679a.htm">
<HelpTOCNode Title="First Property " Url="html/fdba9172-7ef3-7e37-2e6e-bb5fe43cd4b5.htm" />
<HelpTOCNode Title="Second Property " Url="html/2200738b-a9b9-cecc-43ba-e6aa4e268ce4.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="70959c8a-37e3-4a00-9de9-039dfc9a0a1d" Title="IMultiQueryable(T1, T2, T3) Interface" Url="html/cfec878f-f774-d543-961d-ea6185530786.htm">
<HelpTOCNode Title="IMultiQueryable(T1, T2, T3) Methods" Url="html/7c4caea1-1929-465c-6da6-2b3c28429644.htm" />
<HelpTOCNode Id="dcd02471-4eea-4305-ab19-f20a6fc96acc" Title="IMultiQueryable(T1, T2, T3) Properties" Url="html/5dad9835-111b-f58f-1034-59b33c2f3552.htm">
<HelpTOCNode Title="First Property " Url="html/41619f5b-5228-e834-205f-f4e03e769d15.htm" />
<HelpTOCNode Title="Second Property " Url="html/c4489d10-17bc-56a7-e82c-d551352d2b96.htm" />
<HelpTOCNode Title="Third Property " Url="html/8ed8b95d-2db1-67a2-d98c-c9192b2e0bc4.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="862b55f4-8ec9-4a2f-bc53-e3b7d640eb27" Title="LineRecord Structure" Url="html/b077f955-9bc6-1e0b-e710-00cc784bccf1.htm">
<HelpTOCNode Title="LineRecord Constructor " Url="html/21757897-eca5-a7a0-b1a8-4d0d9a870df1.htm" />
<HelpTOCNode Id="29cf183c-47af-4289-8d58-f36409348df4" Title="LineRecord Methods" Url="html/7652caec-215c-720a-52b5-10bf7c56f005.htm">
<HelpTOCNode Id="2fa4fa6c-3999-4a2d-ae11-b73be2389801" Title="CompareTo Method " Url="html/62af3731-c551-19e3-10bc-dab7b3edc7ed.htm">
<HelpTOCNode Title="CompareTo Method (Object)" Url="html/f9d0c5a3-9022-d8da-9bbe-986bce0eb0e6.htm" />
<HelpTOCNode Title="CompareTo Method (LineRecord)" Url="html/a5e2cfd6-331b-05c7-7ce2-df50e5fa01ea.htm" />
</HelpTOCNode>
<HelpTOCNode Id="b77df4e0-1e39-4967-a41d-9638e8d257d7" Title="Equals Method " Url="html/6bb38453-9d1d-3ec5-507f-cf38853cffed.htm">
<HelpTOCNode Title="Equals Method (Object)" Url="html/f514a92a-9405-c18e-0523-32d27f2d9592.htm" />
<HelpTOCNode Title="Equals Method (LineRecord)" Url="html/eceeab1f-db32-c774-dd76-f0f4603073d6.htm" />
</HelpTOCNode>
<HelpTOCNode Title="GetHashCode Method " Url="html/b1f41ee4-8457-0b3d-4a50-692888f6d306.htm" />
<HelpTOCNode Title="ToString Method " Url="html/e45f62f1-20db-4823-babb-6e0310fa18d7.htm" />
</HelpTOCNode>
<HelpTOCNode Id="ddb91a94-096d-4e86-938f-c6be516b5fdd" Title="LineRecord Operators" Url="html/16daaf7e-3114-85a5-746f-9b39bda27cb9.htm">
<HelpTOCNode Title="Equality Operator " Url="html/85b0619b-7cb3-8abb-41a0-e721890b4b4b.htm" />
<HelpTOCNode Title="GreaterThan Operator " Url="html/ed798443-81e0-6dcd-be4f-27eb558511a4.htm" />
<HelpTOCNode Title="Inequality Operator " Url="html/417d2a6e-1f42-50c2-9fc9-25877bf4f0c5.htm" />
<HelpTOCNode Title="LessThan Operator " Url="html/52db89c1-d554-4ea0-8823-03e81b8bcf68.htm" />
</HelpTOCNode>
<HelpTOCNode Id="6984b41a-6fab-42ac-8b3e-749bc66f4bc5" Title="LineRecord Properties" Url="html/eddcf25c-9bc1-baa0-eafa-34b988e8b52b.htm">
<HelpTOCNode Title="Line Property " Url="html/44d81f82-621f-45fe-49c0-0ce97fd2d81b.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="87b4b25a-5a52-43bb-a566-9641426c3c97" Title="NullableAttribute Class" Url="html/d38002f5-8220-c873-ca1b-5c99e45e5007.htm">
<HelpTOCNode Title="NullableAttribute Constructor " Url="html/3d9008bb-980e-9fdb-7522-d29320396ef8.htm" />
<HelpTOCNode Title="NullableAttribute Methods" Url="html/1576a427-e89d-6a22-37c1-96d064b3065a.htm" />
<HelpTOCNode Id="e8fb3a09-f085-4b2a-9eec-98e8c1ca7d3d" Title="NullableAttribute Properties" Url="html/753e9527-e465-fd00-179a-7bdc6462db53.htm">
<HelpTOCNode Title="CanBeNull Property " Url="html/4cf712fd-ccc7-ba39-e732-6fdaf9453187.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="2e62142a-9471-4d53-aa32-2d12ed089265" Title="Pair(T1, T2) Structure" Url="html/4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm">
<HelpTOCNode Title="Pair(T1, T2) Constructor " Url="html/1516e01c-7658-2623-7a8f-ee4df625d7f6.htm" />
<HelpTOCNode Id="09d80841-2466-43d9-892d-9e61b17afdd0" Title="Pair(T1, T2) Methods" Url="html/46e8932b-d478-eb06-fa1c-ef9d3cc74caa.htm">
<HelpTOCNode Id="a5b99325-6143-456d-a284-cd96a6f245bc" Title="Equals Method " Url="html/5e55be13-9e9b-2600-32d3-ba9ca745aa61.htm">
<HelpTOCNode Title="Equals Method (Object)" Url="html/b7529ec5-aa93-4535-c680-514876bfefd6.htm" />
<HelpTOCNode Title="Equals Method (Pair(T1, T2))" Url="html/7ac66fd1-9da2-fc0e-16a0-cb9e126c9ee4.htm" />
<HelpTOCNode Title="Equals Method (Pair(T1, T2), Pair(T1, T2))" Url="html/d765426f-362d-8a80-9759-867dd963e0ab.htm" />
</HelpTOCNode>
<HelpTOCNode Title="GetHashCode Method " Url="html/6823bc5e-464f-8c0f-48e5-219730a0087e.htm" />
<HelpTOCNode Title="ToString Method " Url="html/cc3a4b94-829d-7c14-e4b8-5502f3f48564.htm" />
</HelpTOCNode>
<HelpTOCNode Id="390706e7-b739-4e4b-9db6-8599141a4da3" Title="Pair(T1, T2) Operators" Url="html/c826392f-ec40-9563-7ba3-86d6d58eb217.htm">
<HelpTOCNode Title="Equality Operator " Url="html/eb7302d8-bade-88ab-7153-3e08f8902454.htm" />
<HelpTOCNode Title="Inequality Operator " Url="html/3bf777a3-e426-ee8f-f3de-10021739d621.htm" />
</HelpTOCNode>
<HelpTOCNode Id="5d0dd20e-f21f-4d98-a5af-f263009d0657" Title="Pair(T1, T2) Properties" Url="html/f308d9e3-9559-30ab-60d9-96d07c0a5c32.htm">
<HelpTOCNode Title="Key Property " Url="html/3455cc4c-9167-df7a-419d-73f08bc8d22b.htm" />
<HelpTOCNode Title="Value Property " Url="html/851049b8-d045-8c03-239a-552bbc87e72d.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Title="PlatformKind Enumeration" Url="html/db48824c-598d-a2a7-24db-a422d19467b1.htm" />
<HelpTOCNode Title="QueryTraceLevel Enumeration" Url="html/7f48283a-3fd5-7bf1-1b43-e0164f893f54.htm" />
<HelpTOCNode Id="119ede75-917f-4562-8f82-2787983c238a" Title="ResourceAttribute Class" Url="html/f48da9e0-e74d-da3a-ca41-d3afe376271d.htm">
<HelpTOCNode Title="ResourceAttribute Constructor " Url="html/86d920ef-97e4-e664-37e7-3a578a6147f8.htm" />
<HelpTOCNode Title="ResourceAttribute Methods" Url="html/af8cd2ea-66ae-25d1-e6d6-72bdc1970c4b.htm" />
<HelpTOCNode Id="07af1c9f-3132-4065-9a71-ed271debab0c" Title="ResourceAttribute Properties" Url="html/62294aa3-632b-d83c-211b-ce7c7c1e006f.htm">
<HelpTOCNode Title="IsExpensive Property " Url="html/86c25f2d-0f68-e003-8d8d-67563fc07e67.htm" />
<HelpTOCNode Title="IsStateful Property " Url="html/ddb9ef54-f5d0-5fcf-b1b7-c71c7966b4f1.htm" />
</HelpTOCNode>
</HelpTOCNode>
</HelpTOCNode>
</HelpTOC>

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

1
fti/FTI_100.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_101.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_102.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_103.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_104.json Normal file
View File

@ -0,0 +1 @@
{"help":[1,8847361,12189697,15138817,19398657,26279937],"hdinsight":[2,3538945,6291462,8847361,8912900,17629186,25559041,26279937,27459587],"history":[1,19136513,19398658,26279937],"headnode":[2,851969,3735559,3932167,5308417,11665409,20185089],"hashpartition":[7,3473415,6946824,11403272,12713991,14876680,15859720,18874374,22806536,27918344,28114945],"hasfirst":[2,655361,4784129,9175047,13828097,20447233,23396359],"hassecond":[2,655361,4784129,13828097,17760263,20447233,24510471],"hasthird":[1,655361,20447233,29949959],"hasvalue":[1,7340034,17301511,17432578,17498113],"hash":[655361,851969,1245185,1310721,1441793,1507330,1703937,1900546,2228225,2424833,2686977,3342337,3473414,4653057,4784129,5242881,6291458,6356993,6946818,7340033,8388609,8454145,8519681,8716289,8781825,9764865,9830402,10551297,11337729,11403266,11796481,11993089,12189697,12713992,13107201,13762561,14024706,14876674,15859714,18874376,18939905,20381697,20578305,20774913,20971521,21561345,22282241,22806530,24444929,24576001,26542081,26607617,26673154,27918338,28377089,30015489],"hierarchy":[851969,1638401,1703937,2686977,8454145,8781825,9764865,10551297,12189697,12713985,16187393,19267585,24444929,24576001,24969217,26542081,26607617,28377089],"head":[851969,3735553,3932161,5308417,11665409,20185089,22937601,24772609],"hold":[851969],"helper":[1441793,1638401,3342337,8454145,19267585,20905985,23920641,26542081,28114946],"happens":[3538945,6291457,26279937],"hostname":[3735553,5308417,11665409],"hadoop":[6291463,8912898],"hive":[6291457],"hdfs":[6291457,28442625],"heartbeat":[6291457],"holds":[11927553,22085633],"helplink":[12189697,15138817],"hresult":[12189698,15138818],"https":[17629185],"hosted":[26279937]}

1
fti/FTI_105.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_106.json Normal file
View File

@ -0,0 +1 @@
{"job":[2,458754,589825,851976,1703938,3407877,3538945,4390913,5570561,6291470,8650753,8847361,10878977,12713986,12976129,17629188,18415617,18612225,18808833,18874370,20185096,20250625,20643842,20840449,21037058,21626881,24641539,26279942,26411009,27459588,28114945],"jobenvironmentvariables":[1,851969,10878983,20185089],"jobfriendlyname":[1,851969,6291457,20185089,21626887],"jobmaxnodes":[1,851969,18808839,20185089],"jobminnodes":[1,851969,18612231,20185089],"jobpassword":[1,851969,20185089,25034759],"jobruntimelimit":[1,851969,20185089,20250631],"jobusername":[1,196615,851969,20185089],"jobids":[1,589825,1703937,12976135],"jobs":[196609,589825,851972,1703940,6291461,11534337,12976129,15007745,15400961,18939906,20185092,20840449,24772609,25034753,25165825,27197441,28114946],"jobguid":[6291459],"jar":[6291457],"jobbrowser":[17629188,26279937],"janedoe":[27459586]}

1
fti/FTI_107.json Normal file
View File

@ -0,0 +1 @@
{"keyword":[2],"kind":[1,5308417,11075591,11337729,11665409,19726337,26607617],"keys":[1,393218,4194312,5767171,7012355,9306117,10682369,10747908,11403265,11599874,11796481,12713997,13107201,13172739,13500419,13565954,14876673,15204354,16711684,16777217,16973825,17956866,18874381,21561345,22151179,22478852,27131907,27918337,28114945,28573698,29491209],"key":[1,851971,1310723,2097154,2359308,2555907,5373954,5767170,6225929,6553603,6946819,7012354,8716295,9306114,10682370,10747906,11403267,11599873,11796481,12189697,12713988,13107201,13172739,13500418,13565954,14024707,14876675,15138817,15204354,15859715,15990785,16711682,16777219,16973825,17956866,18481154,18874372,21561347,22151171,22478850,22806531,27131906,27918339,28114946,28246020,28573698],"known":[851969,11534337,20185089],"keyselector":[5767175,6553607,6946823,7012359,9306119,10682375,10747911,11403271,11796487,13107207,13500423,13565959,14024711,14876679,15859719,16711687,16777223,16973831,17956871,21561351,22151175,22478855,22806535,27131911,27918343,28573703],"keyvaluepair":[8716289,28114945]}

1
fti/FTI_108.json Normal file
View File

@ -0,0 +1 @@
{"link":[1,6291457,12189697,15138817],"localdebug":[1,851969,20185089,21757961],"localexecution":[1,851969,20185089,28442632],"level":[1,458753,851969,2752520,6488065,9633797,12648449,15269894,16187399,19791873,19922946,20185089,20840449,29294593,29753345],"lastasquery":[3,5046280,10289155,12713986,18874370,25821192],"longcountasquery":[3,6160392,12517379,12713986,17039368,18874370],"longselect":[1,8257543,12713985,18874369],"longselectmany":[3,131080,4325379,12713986,18874370,20709384],"longskipwhile":[1,12713985,18874369,22937607],"longtakewhile":[1,1769479,12713985,18874369],"longwhere":[1,12713985,18874369,20054023],"linerecord":[7,2490375,3866631,7864338,8323075,9568275,11206662,12451846,13762573,16121874,19464205,20774949,20971523,26869764,27656206,27721747,27852804,28114945,28639235,29556739],"lessthan":[1,2490369,9568257,20774913],"line":[1,3866631,6291457,8323079,17629185,20774914,27459587,27852801,28114945],"linq":[65539,131075,786433,917506,1114114,1572865,1769474,3014658,3080193,3407873,3801090,4259842,4587521,4915201,5046273,5439490,5505026,5767170,5832706,6160385,6553602,6750210,6946819,7012354,7405570,7733249,7995394,8257538,8650753,9109505,9240577,9306114,9961473,10092545,10354691,10682370,10747906,10813442,10944514,11010049,11272194,11403266,11468801,11796484,12124162,12386305,12713985,12779522,12845058,13041667,13107202,13500418,13565954,13697026,14024706,14155778,14352385,14876674,15073282,15466498,15663107,15728641,15859714,15925249,16252930,16318465,16711682,16777218,16973826,17039362,17563651,17694721,17956866,18087937,18219010,18415617,18743297,19005441,19070977,19660801,19857410,19988482,20054018,20512771,20709378,21430273,21561346,21757953,21889027,22151170,22347777,22478850,22544385,22806530,22937602,23003138,23134209,23461889,23658498,24051714,24248322,24313857,24641537,24707075,25296900,25624578,25690114,25821186,25886721,26148866,26214402,26279937,26345474,27000835,27131906,27328513,27787265,27918339,27983874,28114945,28180482,28311553,28573698,28770305,29687810,30081025,30146562,30212097],"long":[131080,1376260,1769480,3080200,4456456,6160392,6750224,7405576,8257544,11272200,12255240,12713985,16646148,17039368,18743312,18874369,20054024,20709384,22347784,22413320,22937609,25231372,27328528,29687824],"list":[393219,720897,851970,1507329,1835009,3276801,3407873,3473409,3604481,4325377,4718593,5767170,6291457,6881281,7012354,8650753,9306115,10289153,10616833,10747907,11206657,11730945,12451841,12517377,12582913,12713996,14221313,14548993,14745601,15204353,16580610,16711682,17956866,18022401,18481153,18546689,18677761,18874380,19333121,20185090,20643842,21037057,21102593,21299201,21561345,21692417,22151169,22216705,22478850,23789569,26017793,26411009,26804225,27131906,28508161,28573698,28966913,29425665,29491209],"look":[458753,27459586],"local":[851971,16908289,18022401,19595265,20185090,21037057,21757953,23068674,25559041,26411009,27066369,27459588,28442626],"launched":[851969,6291457,11534337,20185089],"largest":[1769474,12713985,18874369],"linerecords":[2490370,7864322,16121858,20774914],"logging":[2752513,6291457,15269889,16187394,19922945,28114945],"loop":[4587523,12713985,18874369,22872066,23461892,24313860,24969218,26804226],"longcount":[6160385,12517378,12713986,17039361,18874370],"launch":[6291457,27459585],"like":[6291458,27459586],"launches":[6291459,27459585],"logs":[6291459,15269893,20840449],"log":[6488066,9633797,12648450,15269893,16187397,19791874,27459585,29294594,29753346],"location":[7143425,11337730,13893633,26607618],"lease":[7143425,7536641],"left":[7208961,7864321,9568258,16121857,27459585,27590657,27721730],"linerecrod":[9568257,27721729],"logic":[12713985,18874369,20054017],"levels":[15269889,28114945],"lower":[18612225],"limit":[18612225,18808833,20250625],"life":[19398657],"links":[19398657],"locate":[19660801,28770305],"library":[24969217,28114945],"locally":[25559041,27459585],"large":[26279938],"language":[26279937],"license":[26279937],"listed":[26279937],"libraries":[27459585],"lines":[27459586],"lots":[27459585],"layers":[28114945,28377089]}

1
fti/FTI_109.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_110.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_111.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_112.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_113.json Normal file
View File

@ -0,0 +1 @@
{"quick":[1,8847361,27459585],"querytracelevel":[1,15269895,20840460,28114945],"query":[458753,851973,2949122,3932161,4915202,5701634,7536641,7929857,8126465,9109506,10485761,11534337,11599873,12713988,13172738,13303809,14680065,16580609,18415617,18874372,20185091,20643841,20840450,21037057,21168129,21757953,23265281,24117250,24641537,25362433,26017794,26279937,26411009,27525121,28114945,28442625],"qualified":[655361,4784129,5242881,6356993,7340033,22282241],"queries":[851969,2949121,3407874,5701633,7929857,8650754,10485761,11599873,12713986,13172737,16580609,18874370,20643841,24117249,27066370,27525121,28835841],"quickly":[27459585],"queryplan":[27459586]}

1
fti/FTI_114.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_115.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_116.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_117.json Normal file
View File

@ -0,0 +1 @@
{"uint16":[1,2031617,2293762,3342337,8454145,19333121],"uint32":[1,3342337,8454145,8585218,19333121,26738689,28835841],"uint64":[1,1376257,3342337,8454145,16646146,19333121],"uri":[2,262152,851969,1310721,4915201,5898257,7143432,9109513,11337730,11665409,12713987,13893640,14286856,16908297,18874371,19595273,21233672,21692417,26017795,26607618,26935304,29032456,29097985],"uses":[1,8912897],"usage":[65537,131073,786433,917505,1114113,1572865,1769473,3014657,3080193,3801089,4259841,4587521,4915201,5046273,5439489,5505025,5767169,5832705,6160385,6553601,6750209,6946817,7012353,7405569,7733249,7995393,8257537,9109505,9240577,9306113,9961473,10092545,10354689,10682369,10747905,10813441,10944513,11010049,11272193,11403265,11468801,11796481,12124161,12386305,12779521,12845057,13041665,13107201,13500417,13565953,13697025,14024705,14155777,14352385,14876673,15073281,15466497,15663105,15728641,15859713,15925249,16252929,16318465,16711681,16777217,16973825,17039361,17563649,17694721,17956865,18087937,18219009,18415617,18743297,19005441,19070977,19660801,19857409,19988481,20054017,20512769,20709377,21430273,21561345,21889025,22151169,22347777,22478849,22544385,22806529,22937601,23003137,23134209,23461889,23658497,24051713,24248321,24313857,24641537,24707073,25296897,25624577,25690113,25821185,25886721,26148865,26214401,26345473,27000833,27131905,27328513,27787265,27918337,27983873,28180481,28311553,28573697,28770305,29687809,30081025,30146561,30212097],"used":[851972,1310721,1441793,1638401,3342337,4390913,7143425,8454146,11337730,12713985,13893633,18874369,19267585,19595265,19726337,20054017,20185091,20316161,20905985,21626881,23920641,24576001,24969217,25100289,26476545,26542082,26607618,28114951,28377089],"uris":[851969,1310721,2555905],"user":[851969,1638401,2686977,3997697,6291460,8454145,8781825,10944513,12189697,12713989,15073281,15138817,15204356,18874373,19267585,19595265,19857409,20185089,21757953,23658497,24444929,24969217,26279937,26542081,27066371,27983873,28114952,28377089],"unc":[851969,20185089,26476545],"unsigned":[1376260,1441795,2031620,2293764,3342340,7667714,8454148,8585220,11862018,16646148,19333124,20119556,20905986,23920642,26542083,26738692,27262978,28835844],"ulong":[1376260,16646148],"unfinished":[1703937,18939905,25165825],"ushort":[2031620,2293764],"unique":[2686977,8781825,11141121,11665409,12058625,13631489,19595266,24444929,24576001,25952257,28049409,28377089,29097985],"using":[6291462,7077889,8847361,9306113,10747905,12713987,13500417,17825793,18874371,24969217,26279938,27197441,28114945,28442625,29491203],"unfortunately":[6291458],"uploads":[6291457],"uploaded":[6291458,27459587],"updates":[6291457],"uint":[8585218,26738690,28835842],"uinteger":[8585218,26738690,28835842],"unknown":[9764866,14811137,18153474,25231361],"upper":[18808833],"unsafe":[20905986,23920642],"useful":[21757953,24969217,28114946,28377089],"usual":[21757953,28442625],"unrolling":[23461889],"unified":[26279937],"users":[27459586],"udf":[28114945,28377089]}

1
fti/FTI_118.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_119.json Normal file
View File

@ -0,0 +1 @@
{"welcome":[1,8912897,19398657,26279937],"write":[19,524296,1048585,1966089,2293768,3145736,3342354,3997698,4063233,5177345,6029320,6815753,8454163,8585224,9043977,14942216,15532040,16646153,19333138,20119560,20905987,22413321,23855113,24379400,25493513,27262978,28114946,28704777],"writebytes":[1,3342337,8454145,27262983],"writechars":[1,3342337,4063239,8454145],"writecompact":[1,1441793,3342337,6619143,8454145,9502721,26542081],"writerawbytes":[1,3342337,8454145,20905989],"wait":[1,1703937,15400967,18939905],"writes":[524289,1048577,1966081,2293761,3145729,3342356,3997697,4063233,5177345,6029313,6291458,6619137,6815745,8454164,8585217,9043969,14942209,15532033,16646145,19333137,20119553,22413313,23855105,24379393,25493505,27262977,28704769],"writer":[524289,1048577,1966081,2293761,3145729,3342356,3997697,4063233,5177345,6029313,6619137,6815745,8454164,8585217,9043969,14942209,15532033,16646145,17170433,19333137,20119553,22413313,23855105,24379393,25493513,27262977,28704769],"written":[524289,1441793,2293761,3145729,3342337,6029313,6619138,8454145,8585217,9502721,15532033,20119553,24379393,26542081],"wchar_t":[3145730,4063234,9699330,20774914,21495812,29622274],"waits":[3407873,12713986,18874370,20643842,24641537],"way":[6291457,17629185],"wrapped":[6291457],"wasb":[6291458],"works":[6684673],"website":[8912897],"work":[8912897],"want":[8912897,17629185],"warning":[9633793,15269890,16187393,19791873],"window":[12713985,18874369,24051716],"windows":[17629185],"worker":[23068673],"windowsize":[24051719],"word":[27459586],"wordcount":[27459587],"wordcountexample":[27459585],"writing":[27459585]}

1
fti/FTI_120.json Normal file
View File

@ -0,0 +1 @@
{"xml":[6291461,27459586],"x64":[17629185,27459585]}

1
fti/FTI_121.json Normal file
View File

@ -0,0 +1 @@
{"yarn":[851969,6291465,18022401,24772610,25559042],"yourusername":[6291459],"yarn_azure":[24772614,25559041],"yarn_native":[25559041]}

1
fti/FTI_122.json Normal file
View File

@ -0,0 +1 @@
{"zero":[10944513,12713986,15204354,18874370,23658497]}

1
fti/FTI_95.json Normal file
View File

@ -0,0 +1 @@
{"_exception":[11927553]}

1
fti/FTI_97.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_98.json Normal file
View File

@ -0,0 +1 @@
{"building":[1,8847361,17629185,26279937],"browser":[2,6291458,8847361,17629188,26279940],"boolean":[23,393218,458755,524294,720899,1114117,1179651,1441793,1769475,2621443,3342338,3604482,3801093,4587524,4915204,4980739,5439493,5636100,6553604,6684675,7012356,7143427,7208963,7274499,7864323,8192003,8454146,8978435,9109508,9175043,9306116,9568259,10289154,10682372,11534339,11730948,12386308,12517378,12714018,13041668,13565956,14221314,14286851,14417923,16121859,16384003,16711684,16777220,16973827,17039365,17301507,17563652,17694724,17760259,18481154,18546690,18874402,19333122,19660804,19988489,20054019,21102594,21364739,21757955,22478852,22740995,22872066,22937603,23396355,23461892,24313859,24510467,24903683,24969218,25755651,25821189,26017794,26214408,26542081,26804226,27000836,27066371,27131908,27590659,27656195,27721731,28442627,28639235,28770308,29163523,29425666,29491205,29818883,29949955,30212100],"byte":[1,1441798,3342340,5636098,7667718,8454148,11862024,15532034,19333123,20119560,20905989,23920645,24838147,26542086,27262982],"broadcast":[3,18087947,22872068,23789573,24969220,26148874],"basic":[65538,131074,786434,917506,1114114,1572866,1769474,3014658,3080194,3801090,4259842,4587522,4915202,5046274,5439490,5505026,5767170,5832706,6160386,6553602,6750210,6946818,7012354,7405570,7733250,7995394,8257538,9109506,9240578,9306114,9764865,9961474,10092546,10354690,10682370,10747906,10813442,10944514,11010050,11272194,11403266,11468802,11796482,12124162,12386306,12779522,12845058,13041666,13107202,13500418,13565954,13697026,14024706,14155778,14352386,14876674,15073282,15466498,15663106,15728642,15859714,15925250,16252930,16318466,16711682,16777218,16973826,17039362,17563650,17694722,17956866,18087938,18219010,18415618,18743298,19005442,19070978,19660802,19857410,19988482,20054018,20512770,20709378,20905986,21430274,21561346,21889026,22151170,22347778,22478850,22544386,22806530,22937602,23003138,23134210,23461890,23658498,23920642,24051714,24248322,24313858,24641538,24707074,24969217,25296898,25624578,25690114,25821186,25886722,26148866,26214402,26345474,27000834,27131906,27328514,27787266,27918338,27983874,28114946,28180482,28311554,28573698,28770306,29687810,30081026,30146562,30212098],"bool":[458760,524292,1114116,1179656,1769476,2621448,3801092,4587524,4915204,4980740,5439492,5636100,6553604,6684680,7012356,7143428,7208964,7274500,7864324,8192008,8978438,9109508,9175046,9306116,9568260,10682372,11534344,12386308,13041668,13565956,14286852,14417924,16121860,16384008,16711684,16777220,16973828,17039364,17301510,17563652,17694724,17760262,19660804,19988488,20054020,21364740,21757960,22478852,22740996,22937604,23396358,23461892,24313860,24510470,24903684,25755656,25821188,26214408,27000836,27066376,27131908,27590660,27656196,27721732,28442632,28639236,28770308,29163524,29818884,29949958,30212100],"blob":[851969,1310721,2555905,6291458,27459586],"break":[851969,1179649,20185089],"bin":[851970,2883585,17629185,17891329,20185090],"based":[851969,5767169,6553601,6946817,7012353,8192001,9306113,10682369,10747905,11403265,12713986,13107201,13500417,13565953,14024705,14876673,15204353,15859713,16711681,16777217,16973825,17956865,18874370,20054017,20185089,21037057,21561345,22151169,22478849,22806529,26411009,27131905,27918337,28573697],"bit":[1048578,1376258,1441801,2031618,2162690,2293762,3342345,4456450,6029314,6291457,6619137,6815746,8454153,8585218,9502722,11993089,15597570,16646146,19333128,20971521,22413314,23527426,24379394,26542089,26738690,29229058],"bytecount":[1441793,7667720,26542081,27262983],"bytes":[1441793,3342337,7667716,8454145,9764865,12255233,18153473,20905985,23920641,25231361,26542081,27262978],"blocks":[1703937,15400961,18939905],"base":[2949121,11665409,28114946],"body":[4587528,23461896,24313864],"binary":[6291457],"begin":[7667713,9699329],"build":[17629187,27459586],"built":[17629185,26279937],"bcnt":[18087943],"backends":[26607618,28114946],"behavior":[27066369],"bytebuffer":[27262983],"box":[27459586],"binaries":[27459585],"blobs":[27459585],"big":[27459585],"better":[28114945,28377089]}

1
fti/FTI_99.json Normal file

File diff suppressed because one or more lines are too long

1
fti/FTI_Files.json Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,126 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.Apply(T1, T2) Method (IQueryable(T1), IQueryable(T1)[], Expression(Func(IEnumerable(T1)[], IEnumerable(T2))))</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqQueryable.Apply``2(System.Linq.IQueryable{``0},System.Linq.IQueryable{``0}[],System.Linq.Expressions.Expression{System.Func{System.Collections.Generic.IEnumerable{``0}[],System.Collections.Generic.IEnumerable{``1}}})" /><meta name="Description" content="Compute applyFunc on multiple sources" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="005a51b3-d88c-6ff3-7f8d-fadf5ad2435c" /><meta name="guid" content="005a51b3-d88c-6ff3-7f8d-fadf5ad2435c" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0E0CB0BABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E0CB0BABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Apply<span id="ID0E0AB0BABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E0AB0BABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T1</span>, <span class="typeparameter">T2</span><span id="ID0E3BABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E3BABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Method (IQueryable<span id="ID0E1BABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E1BABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T1</span><span id="ID0EYBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EYBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, <span id="ID0EWBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EWBABAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script>IQueryable<span id="ID0EUBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EUBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T1</span><span id="ID0ESBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ESBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ERBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERBABAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script>, Expression<span id="ID0EPBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0ENBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span id="ID0EMBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMBABAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script>IEnumerable<span id="ID0EKBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T1</span><span id="ID0EIBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EHBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHBABAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script>, IEnumerable<span id="ID0EFBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T2</span><span id="ID0EDBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Compute applyFunc on multiple sources
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECVCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECVCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECVCAAAAA_tabimgleft"></div><div id="ID0ECVCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECVCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECVCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECVCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECVCAAAAA_tabimgright"></div></div><div id="ID0ECVCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECVCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECVCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECVCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECVCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECVCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECVCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECVCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;T2&gt; <span class="identifier">Apply</span>&lt;T1, T2&gt;(
<span class="keyword">this</span> <span class="identifier">IQueryable</span>&lt;T1&gt; <span class="parameter">source</span>,
<span class="identifier">IQueryable</span>&lt;T1&gt;[] <span class="parameter">otherSources</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;<span class="identifier">IEnumerable</span>&lt;T1&gt;[], <span class="identifier">IEnumerable</span>&lt;T2&gt;&gt;&gt; <span class="parameter">applyFunc</span>
)</pre></div><div id="ID0ECVCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static IQueryable&lt;T2&gt; Apply&lt;T1, T2&gt;(
this IQueryable&lt;T1&gt; source,
IQueryable&lt;T1&gt;[] otherSources,
Expression&lt;Func&lt;IEnumerable&lt;T1&gt;[], IEnumerable&lt;T2&gt;&gt;&gt; applyFunc
)</pre></div><div id="ID0ECVCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">ExtensionAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">Apply</span>(<span class="keyword">Of</span> T1, T2) (
<span class="parameter">source</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> T1),
<span class="parameter">otherSources</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> T1)(),
<span class="parameter">applyFunc</span> <span class="keyword">As</span> <span class="identifier">Expression</span>(<span class="keyword">Of</span> <span class="identifier">Func</span>(<span class="keyword">Of</span> <span class="identifier">IEnumerable</span>(<span class="keyword">Of</span> T1)(), <span class="identifier">IEnumerable</span>(<span class="keyword">Of</span> T2)))
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> T2)</pre></div><div id="ID0ECVCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;ExtensionAttribute&gt;
Public Shared Function Apply(Of T1, T2) (
source As IQueryable(Of T1),
otherSources As IQueryable(Of T1)(),
applyFunc As Expression(Of Func(Of IEnumerable(Of T1)(), IEnumerable(Of T2)))
) As IQueryable(Of T2)</pre></div><div id="ID0ECVCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
[<span class="identifier">ExtensionAttribute</span>]
<span class="keyword">generic</span>&lt;<span class="keyword">typename</span> T1, <span class="keyword">typename</span> T2&gt;
<span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;T2&gt;^ <span class="identifier">Apply</span>(
<span class="identifier">IQueryable</span>&lt;T1&gt;^ <span class="parameter">source</span>,
<span class="keyword">array</span>&lt;<span class="identifier">IQueryable</span>&lt;T1&gt;^&gt;^ <span class="parameter">otherSources</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;<span class="keyword">array</span>&lt;<span class="identifier">IEnumerable</span>&lt;T1&gt;^&gt;^, <span class="identifier">IEnumerable</span>&lt;T2&gt;^&gt;^&gt;^ <span class="parameter">applyFunc</span>
)</pre></div><div id="ID0ECVCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
[ExtensionAttribute]
generic&lt;typename T1, typename T2&gt;
static IQueryable&lt;T2&gt;^ Apply(
IQueryable&lt;T1&gt;^ source,
array&lt;IQueryable&lt;T1&gt;^&gt;^ otherSources,
Expression&lt;Func&lt;array&lt;IEnumerable&lt;T1&gt;^&gt;^, IEnumerable&lt;T2&gt;^&gt;^&gt;^ applyFunc
)</pre></div><div id="ID0ECVCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECVCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECVCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="source"><dt><span class="parameter">source</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBFACUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFACUCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EEACUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEACUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T1</span></span><span id="ID0ECACUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECACUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>The first input dataset</span></dd></dl><dl paramName="otherSources"><dt><span class="parameter">otherSources</span></dt><dd>Type: <span id="ID0EHABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHABUCAAAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script><a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBGABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBGABUCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EFABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFABUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T1</span></span><span id="ID0EDABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABUCAAAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script><br /><span>Other input datasets</span></dd></dl><dl paramName="applyFunc"><dt><span class="parameter">applyFunc</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb335710" target="_blank">System.Linq.Expressions<span id="ID0EBSAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBSAAUCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Expression</a><span id="ID0ERAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/bb549151" target="_blank">Func</a><span id="ID0EPAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span id="ID0EOAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOAAUCAAAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script><a href="http://msdn2.microsoft.com/en-us/library/9eekhta0" target="_blank">IEnumerable</a><span id="ID0EMAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T1</span></span><span id="ID0EKAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EJAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJAAUCAAAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script>, <a href="http://msdn2.microsoft.com/en-us/library/9eekhta0" target="_blank">IEnumerable</a><span id="ID0EGAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T2</span></span><span id="ID0EEAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EDAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>The function to be applied to the input datasets</span></dd></dl></div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Type Parameters</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><dl><dt><span class="parameter">T1</span></dt><dd>The type of the records of input</dd><dt><span class="parameter">T2</span></dt><dd>The type of the records of output</dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EPCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T2</span></span><span id="ID0ENCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The result of computing applyFunc(source,pieces)<h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EHCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T1</span></span><span id="ID0EFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="http://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank">Extension Methods (Visual Basic)</a> or <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" target="_blank">Extension Methods (C# Programming Guide)</a>.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="b3becad6-86fb-857e-5ee5-295a2d23b663.htm" target="">Apply Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.Apply(T1%2c+T2)+Method+(IQueryable(T1)%2c+IQueryable(T1)%5b%5d%2c+Expression(Func(IEnumerable(T1)%5b%5d%2c+IEnumerable(T2))))+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,113 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.LongSelectMany(TSource, TCollection, TResult) Method (IQueryable(TSource), Expression(Func(TSource, Int64, IEnumerable(TCollection))), Expression(Func(TSource, TCollection, TResult)))</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqQueryable.LongSelectMany``3(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64,System.Collections.Generic.IEnumerable{``1}}},System.Linq.Expressions.Expression{System.Func{``0,``1,``2}})" /><meta name="Description" content="Transforms each element of a sequence into an IEnumerable{T} by applying a function to the element and its index, and then flattens the resulting sequences into one sequence." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="007a2597-5856-ead6-c4c0-24afeb3c146f" /><meta name="guid" content="007a2597-5856-ead6-c4c0-24afeb3c146f" /><link type="text/css" rel="stylesheet" href="./../styles/highlight.css" /><script type="text/javascript" src="../scripts/highlight.js"><!----></script><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0E0DB0BABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E0DB0BABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>LongSelectMany<span id="ID0E0BB0BABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E0BB0BABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span>, <span class="typeparameter">TCollection</span>, <span class="typeparameter">TResult</span><span id="ID0E2BABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E2BABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Method (IQueryable<span id="ID0EZBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EZBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span><span id="ID0EXBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EXBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EVBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EVBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0ETBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ETBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span>, Int64, IEnumerable<span id="ID0EQBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EQBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TCollection</span><span id="ID0EOBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ENBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EMBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EKBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EIBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span>, <span class="typeparameter">TCollection</span>, <span class="typeparameter">TResult</span><span id="ID0ECBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Transforms each element of a sequence into an IEnumerable{T} by applying a function to the
element and its index, and then flattens the resulting sequences into one sequence.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECXCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECXCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECXCAAAAA_tabimgleft"></div><div id="ID0ECXCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECXCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECXCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECXCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECXCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECXCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECXCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECXCAAAAA_tabimgright"></div></div><div id="ID0ECXCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECXCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECXCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECXCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECXCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECXCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECXCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECXCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;TResult&gt; <span class="identifier">LongSelectMany</span>&lt;TSource, TCollection, TResult&gt;(
<span class="keyword">this</span> <span class="identifier">IQueryable</span>&lt;TSource&gt; <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, <span class="identifier">long</span>, <span class="identifier">IEnumerable</span>&lt;TCollection&gt;&gt;&gt; <span class="parameter">selector</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, TCollection, TResult&gt;&gt; <span class="parameter">resultSelector</span>
)</pre></div><div id="ID0ECXCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static IQueryable&lt;TResult&gt; LongSelectMany&lt;TSource, TCollection, TResult&gt;(
this IQueryable&lt;TSource&gt; source,
Expression&lt;Func&lt;TSource, long, IEnumerable&lt;TCollection&gt;&gt;&gt; selector,
Expression&lt;Func&lt;TSource, TCollection, TResult&gt;&gt; resultSelector
)</pre></div><div id="ID0ECXCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">ExtensionAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">LongSelectMany</span>(<span class="keyword">Of</span> TSource, TCollection, TResult) (
<span class="parameter">source</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> TSource),
<span class="parameter">selector</span> <span class="keyword">As</span> <span class="identifier">Expression</span>(<span class="keyword">Of</span> <span class="identifier">Func</span>(<span class="keyword">Of</span> TSource, <span class="identifier">Long</span>, <span class="identifier">IEnumerable</span>(<span class="keyword">Of</span> TCollection))),
<span class="parameter">resultSelector</span> <span class="keyword">As</span> <span class="identifier">Expression</span>(<span class="keyword">Of</span> <span class="identifier">Func</span>(<span class="keyword">Of</span> TSource, TCollection, TResult))
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> TResult)</pre></div><div id="ID0ECXCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;ExtensionAttribute&gt;
Public Shared Function LongSelectMany(Of TSource, TCollection, TResult) (
source As IQueryable(Of TSource),
selector As Expression(Of Func(Of TSource, Long, IEnumerable(Of TCollection))),
resultSelector As Expression(Of Func(Of TSource, TCollection, TResult))
) As IQueryable(Of TResult)</pre></div><div id="ID0ECXCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
[<span class="identifier">ExtensionAttribute</span>]
<span class="keyword">generic</span>&lt;<span class="keyword">typename</span> TSource, <span class="keyword">typename</span> TCollection, <span class="keyword">typename</span> TResult&gt;
<span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;TResult&gt;^ <span class="identifier">LongSelectMany</span>(
<span class="identifier">IQueryable</span>&lt;TSource&gt;^ <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, <span class="identifier">long long</span>, <span class="identifier">IEnumerable</span>&lt;TCollection&gt;^&gt;^&gt;^ <span class="parameter">selector</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, TCollection, TResult&gt;^&gt;^ <span class="parameter">resultSelector</span>
)</pre></div><div id="ID0ECXCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
[ExtensionAttribute]
generic&lt;typename TSource, typename TCollection, typename TResult&gt;
static IQueryable&lt;TResult&gt;^ LongSelectMany(
IQueryable&lt;TSource&gt;^ source,
Expression&lt;Func&lt;TSource, long long, IEnumerable&lt;TCollection&gt;^&gt;^&gt;^ selector,
Expression&lt;Func&lt;TSource, TCollection, TResult&gt;^&gt;^ resultSelector
)</pre></div><div id="ID0ECXCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECXCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECXCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="source"><dt><span class="parameter">source</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBFACWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFACWCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EEACWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEACWCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0ECACWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECACWCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>The sequence of input elements</span></dd></dl><dl paramName="selector"><dt><span class="parameter">selector</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb335710" target="_blank">System.Linq.Expressions<span id="ID0EBPABWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBPABWCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Expression</a><span id="ID0EOABWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOABWCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/bb534647" target="_blank">Func</a><span id="ID0EMABWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMABWCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span>, <a href="http://msdn2.microsoft.com/en-us/library/6yy583ek" target="_blank">Int64</a>, <a href="http://msdn2.microsoft.com/en-us/library/9eekhta0" target="_blank">IEnumerable</a><span id="ID0EGABWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGABWCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TCollection</span></span><span id="ID0EEABWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEABWCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EDABWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABWCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECABWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABWCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>A transform function to apply to each source element;
the second parameter of the function represents the index of the source element.</span></dd></dl><dl paramName="resultSelector"><dt><span class="parameter">resultSelector</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb335710" target="_blank">System.Linq.Expressions<span id="ID0EBMAAWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBMAAWCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Expression</a><span id="ID0ELAAWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ELAAWCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/bb534647" target="_blank">Func</a><span id="ID0EJAAWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJAAWCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span>, <span class="selflink"><span class="typeparam">TCollection</span></span>, <span class="selflink"><span class="typeparam">TResult</span></span><span id="ID0EDAAWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDAAWCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECAAWCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECAAWCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>A transformation function to apply to each intermediate element</span></dd></dl></div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Type Parameters</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><dl><dt><span class="parameter">TSource</span></dt><dd>The type of the elements of source</dd><dt><span class="parameter">TCollection</span></dt><dd>The type of the element in the intermediate IEnumerable sequences</dd><dt><span class="parameter">TResult</span></dt><dd>The type of the elements of the result</dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0ERCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TResult</span></span><span id="ID0EPCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The sequence resulting from applying <div id="ID0EMCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0EMCAAAAA_tabs"></div><div id="ID0EMCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0EMCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0EMCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0EMCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0EMCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0EMCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0EMCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0EMCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre>selector</pre></div><div id="ID0EMCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>selector</pre></div></div></div><script>addSpecificTextLanguageTagSet('ID0EMCAAAAA');</script> to each input element and
flattening and transforming the elements in the intermediate sequences<h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EHCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0EFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="http://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank">Extension Methods (Visual Basic)</a> or <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" target="_blank">Extension Methods (C# Programming Guide)</a>.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="241043ae-a90b-3cca-80f6-71bc570453fd.htm" target="">LongSelectMany Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.LongSelectMany(TSource%2c+TCollection%2c+TResult)+Method+(IQueryable(TSource)%2c+Expression(Func(TSource%2c+Int64%2c+IEnumerable(TCollection)))%2c+Expression(Func(TSource%2c+TCollection%2c+TResult)))+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,24 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqContext.JobUsername Property </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="JobUsername property" /><meta name="System.Keywords" content="DryadLinqContext.JobUsername property" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.JobUsername" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.get_JobUsername" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.set_JobUsername" /><meta name="Microsoft.Help.Id" content="P:Microsoft.Research.DryadLinq.DryadLinqContext.JobUsername" /><meta name="Description" content="Gets or sets the RunAs password for jobs submitted to the cluster." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="024262a5-8d35-80f8-1b76-7a6242ad400b" /><meta name="guid" content="024262a5-8d35-80f8-1b76-7a6242ad400b" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqContext<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>JobUsername Property </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Gets or sets the RunAs password for jobs submitted to the cluster.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECDDAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECDDAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECDDAAAAA_tabimgleft"></div><div id="ID0ECDDAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDDAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECDDAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDDAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECDDAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDDAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECDDAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECDDAAAAA_tabimgright"></div></div><div id="ID0ECDDAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECDDAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECDDAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECDDAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECDDAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECDDAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECDDAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECDDAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">string</span> <span class="identifier">JobUsername</span> { <span class="keyword">get</span>; <span class="keyword">set</span>; }</pre></div><div id="ID0ECDDAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public string JobUsername { get; set; }</pre></div><div id="ID0ECDDAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Property</span> <span class="identifier">JobUsername</span> <span class="keyword">As</span> <span class="identifier">String</span> 
<span class="keyword">Get</span> 
<span class="keyword">Set</span></pre></div><div id="ID0ECDDAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Property JobUsername As String 
Get 
Set</pre></div><div id="ID0ECDDAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">property</span> <span class="identifier">String</span>^ <span class="identifier">JobUsername</span> {
<span class="identifier">String</span>^ <span class="keyword">get</span> ();
<span class="keyword">void</span> <span class="keyword">set</span> (<span class="identifier">String</span>^ <span class="parameter">value</span>);
}</pre></div><div id="ID0ECDDAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
property String^ JobUsername {
String^ get ();
void set (String^ value);
}</pre></div><div id="ID0ECDDAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECDDAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECDDAAAAA');</script></div><h4 class="subHeading">Property Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/s1wwdcbf" target="_blank">String</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Remarks</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><p>The default is null (use the credentials of the current Thread)</p><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqContext.JobUsername+Property++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,36 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DataProvider.GetMetaData Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="GetMetaData method" /><meta name="System.Keywords" content="DataProvider.GetMetaData method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DataProvider.GetMetaData" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DataProvider.GetMetaData(Microsoft.Research.DryadLinq.DryadLinqContext,System.Uri)" /><meta name="Description" content="Gets the metadata of a specified dataset." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="03212629-8351-bc14-0918-ef18541c60f6" /><meta name="guid" content="03212629-8351-bc14-0918-ef18541c60f6" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DataProvider<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>GetMetaData Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Gets the metadata of a specified dataset.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECGCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECGCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECGCAAAAA_tabimgleft"></div><div id="ID0ECGCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECGCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECGCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECGCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECGCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECGCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECGCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECGCAAAAA_tabimgright"></div></div><div id="ID0ECGCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECGCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECGCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECGCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECGCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECGCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECGCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECGCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">abstract</span> <span class="identifier">DryadLinqMetaData</span> <span class="identifier">GetMetaData</span>(
<span class="identifier">DryadLinqContext</span> <span class="parameter">context</span>,
<span class="identifier">Uri</span> <span class="parameter">dataSetUri</span>
)</pre></div><div id="ID0ECGCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public abstract DryadLinqMetaData GetMetaData(
DryadLinqContext context,
Uri dataSetUri
)</pre></div><div id="ID0ECGCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">MustOverride</span> <span class="keyword">Function</span> <span class="identifier">GetMetaData</span> (
<span class="parameter">context</span> <span class="keyword">As</span> <span class="identifier">DryadLinqContext</span>,
<span class="parameter">dataSetUri</span> <span class="keyword">As</span> <span class="identifier">Uri</span>
) <span class="keyword">As</span> <span class="identifier">DryadLinqMetaData</span></pre></div><div id="ID0ECGCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public MustOverride Function GetMetaData (
context As DryadLinqContext,
dataSetUri As Uri
) As DryadLinqMetaData</pre></div><div id="ID0ECGCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">virtual</span> <span class="identifier">DryadLinqMetaData</span>^ <span class="identifier">GetMetaData</span>(
<span class="identifier">DryadLinqContext</span>^ <span class="parameter">context</span>,
<span class="identifier">Uri</span>^ <span class="parameter">dataSetUri</span>
) <span class="keyword">abstract</span></pre></div><div id="ID0ECGCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
virtual DryadLinqMetaData^ GetMetaData(
DryadLinqContext^ context,
Uri^ dataSetUri
) abstract</pre></div><div id="ID0ECGCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECGCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECGCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="context"><dt><span class="parameter">context</span></dt><dd>Type: <a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">Microsoft.Research.DryadLinq<span id="ID0EBCABFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCABFCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>DryadLinqContext</a><br /><span>A DryadLinqConext object.</span></dd></dl><dl paramName="dataSetUri"><dt><span class="parameter">dataSetUri</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/txt7706a" target="_blank">System<span id="ID0EBCAAFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCAAFCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Uri</a><br /><span>The URI of the dataset.</span></dd></dl></div><h4 class="subHeading">Return Value</h4>Type: <a href="5e3ae825-91af-0ff7-6ae4-f98f18bd6e58.htm" target="">DryadLinqMetaData</a><br />The metadata. Returns null if metadats is not present.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="e30d9823-523d-4504-b321-4c990c768d6d.htm" target="">DataProvider Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DataProvider.GetMetaData+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,40 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult).RecursiveAccumulate Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="RecursiveAccumulate method" /><meta name="System.Keywords" content="GenericDecomposable%3CTDecomposable%2C TSource%2C TAccumulate%2C TResult%3E.RecursiveAccumulate method" /><meta name="System.Keywords" content="GenericDecomposable(Of TDecomposable%2C TSource%2C TAccumulate%2C TResult).RecursiveAccumulate method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.GenericDecomposable`4.RecursiveAccumulate" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.GenericDecomposable`4.RecursiveAccumulate(`2,`2)" /><meta name="Description" content="Combines two accumulator values into one." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="032e436e-efdc-433f-654c-75ce93cdb5d2" /><meta name="guid" content="032e436e-efdc-433f-654c-75ce93cdb5d2" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">GenericDecomposable<span id="ID0EKBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TDecomposable</span>, <span class="typeparameter">TSource</span>, <span class="typeparameter">TAccumulate</span>, <span class="typeparameter">TResult</span><span id="ID0ECBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>RecursiveAccumulate Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Combines two accumulator values into one.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECGCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECGCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECGCAAAAA_tabimgleft"></div><div id="ID0ECGCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECGCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECGCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECGCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECGCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECGCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECGCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECGCAAAAA_tabimgright"></div></div><div id="ID0ECGCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECGCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECGCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECGCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECGCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECGCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECGCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECGCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> TAccumulate <span class="identifier">RecursiveAccumulate</span>(
TAccumulate <span class="parameter">acc</span>,
TAccumulate <span class="parameter">val</span>
)</pre></div><div id="ID0ECGCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static TAccumulate RecursiveAccumulate(
TAccumulate acc,
TAccumulate val
)</pre></div><div id="ID0ECGCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">RecursiveAccumulate</span> (
<span class="parameter">acc</span> <span class="keyword">As</span> TAccumulate,
<span class="parameter">val</span> <span class="keyword">As</span> TAccumulate
) <span class="keyword">As</span> TAccumulate</pre></div><div id="ID0ECGCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Shared Function RecursiveAccumulate (
acc As TAccumulate,
val As TAccumulate
) As TAccumulate</pre></div><div id="ID0ECGCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">static</span> TAccumulate <span class="identifier">RecursiveAccumulate</span>(
TAccumulate <span class="parameter">acc</span>,
TAccumulate <span class="parameter">val</span>
)</pre></div><div id="ID0ECGCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
static TAccumulate RecursiveAccumulate(
TAccumulate acc,
TAccumulate val
)</pre></div><div id="ID0ECGCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECGCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECGCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="acc"><dt><span class="parameter">acc</span></dt><dd>Type: <a href="11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" target=""><span class="typeparam">TAccumulate</span></a><br /><span>The first accumulator value</span></dd></dl><dl paramName="val"><dt><span class="parameter">val</span></dt><dd>Type: <a href="11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" target=""><span class="typeparam">TAccumulate</span></a><br /><span>The second accumulator value</span></dd></dl></div><h4 class="subHeading">Return Value</h4>Type: <a href="11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" target=""><span class="typeparam">TAccumulate</span></a><br />An accumulator value resulting from combining two accumulator values<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" target="">GenericDecomposable<span id="ID0EDABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABAAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TDecomposable, TSource, TAccumulate, TResult<span id="ID0EBABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABAAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+GenericDecomposable(TDecomposable%2c+TSource%2c+TAccumulate%2c+TResult).RecursiveAccumulate+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,100 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.AssumeRangePartition Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="AssumeRangePartition method" /><meta name="System.Keywords" content="DryadLinqQueryable.AssumeRangePartition method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqQueryable.AssumeRangePartition" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqQueryable.AssumeRangePartition``2" /><meta name="Microsoft.Help.Id" content="Overload:Microsoft.Research.DryadLinq.DryadLinqQueryable.AssumeRangePartition" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="05317da6-b361-379e-397d-e34d85c6856d" /><meta name="guid" content="05317da6-b361-379e-397d-e34d85c6856d" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>AssumeRangePartition Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Overload List</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="5e7665b9-2edd-f06b-379f-2f6b84970870.htm" target="">AssumeRangePartition<span id="ID0EOABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EMABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0EKABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0EIABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EGABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EEABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0ECABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Boolean)</a></td><td><div class="summary">
Instructs DryadLINQ to assume that the dataset is range partitioned.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="f4bf1d22-a963-dab9-a715-09ec09cb78d0.htm" target="">AssumeRangePartition<span id="ID0ESABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ESABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EQABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EQABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0EOABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0EMABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EKABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EIABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EGABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EFABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, <span id="ID0EDABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABCBCAAAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script>TKey<span id="ID0EBABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABCBCAAAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script>)</a></td><td><div class="summary">
Instructs DryadLINQ to assume that the dataset is range partitioned by a specified list of keys.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="750d7563-286e-f1ce-7a49-320d5e20911a.htm" target="">AssumeRangePartition<span id="ID0ESABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ESABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EQABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EQABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0EOABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0EMABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EKABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EIABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EGABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EFABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, IComparer<span id="ID0EDABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TKey<span id="ID0EBABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Boolean)</a></td><td><div class="summary">
Instructs DryadLINQ to assume that the dataset is range partitioned.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="310f517f-7d39-3fcd-42d8-a30e2f015c94.htm" target="">AssumeRangePartition<span id="ID0EWABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EWABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EUABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EUABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0ESABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ESABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0EQABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EQABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EOABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EMABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EKABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EJABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, <span id="ID0EHABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHABABCAAAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script>TKey<span id="ID0EFABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFABABCAAAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script>, IComparer<span id="ID0EDABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TKey<span id="ID0EBABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a></td><td><div class="summary">
Instructs DryadLINQ to assume that the dataset is range partitioned by a specified list of keys.
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.AssumeRangePartition+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,28 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqContext.CompileForVertexDebugging Property </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="CompileForVertexDebugging property" /><meta name="System.Keywords" content="DryadLinqContext.CompileForVertexDebugging property" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.CompileForVertexDebugging" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.get_CompileForVertexDebugging" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.set_CompileForVertexDebugging" /><meta name="Microsoft.Help.Id" content="P:Microsoft.Research.DryadLinq.DryadLinqContext.CompileForVertexDebugging" /><meta name="Description" content="Gets or sets the value specifying whether to compile code with debugging support." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="06266f74-a819-017c-e03f-0f9761a28c52" /><meta name="guid" content="06266f74-a819-017c-e03f-0f9761a28c52" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqContext<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>CompileForVertexDebugging Property </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Gets or sets the value specifying whether to compile code with debugging support.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECDDAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECDDAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECDDAAAAA_tabimgleft"></div><div id="ID0ECDDAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDDAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECDDAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDDAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECDDAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDDAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECDDAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECDDAAAAA_tabimgright"></div></div><div id="ID0ECDDAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECDDAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECDDAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECDDAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECDDAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECDDAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECDDAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECDDAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">bool</span> <span class="identifier">CompileForVertexDebugging</span> { <span class="keyword">get</span>; <span class="keyword">set</span>; }</pre></div><div id="ID0ECDDAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public bool CompileForVertexDebugging { get; set; }</pre></div><div id="ID0ECDDAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Property</span> <span class="identifier">CompileForVertexDebugging</span> <span class="keyword">As</span> <span class="identifier">Boolean</span> 
<span class="keyword">Get</span> 
<span class="keyword">Set</span></pre></div><div id="ID0ECDDAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Property CompileForVertexDebugging As Boolean 
Get 
Set</pre></div><div id="ID0ECDDAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">property</span> <span class="identifier">bool</span> <span class="identifier">CompileForVertexDebugging</span> {
<span class="identifier">bool</span> <span class="keyword">get</span> ();
<span class="keyword">void</span> <span class="keyword">set</span> (<span class="identifier">bool</span> <span class="parameter">value</span>);
}</pre></div><div id="ID0ECDDAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
property bool CompileForVertexDebugging {
bool get ();
void set (bool value);
}</pre></div><div id="ID0ECDDAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECDDAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECDDAAAAA');</script></div><h4 class="subHeading">Property Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/a28wyd50" target="_blank">Boolean</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Remarks</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div>
If true, vertex code will be compiled with no code-level optimizations and a PDB will be generated.
Also, the query execution job look for and include the PDB associated with every DLL resource
that is part of the submitted job.
<p>The default is false.</p><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqContext.CompileForVertexDebugging+Property++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,28 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqBinaryWriter.Write Method (Boolean)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqBinaryWriter.Write(System.Boolean)" /><meta name="Description" content="Writes a boolean value to the current writer." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="06abeb89-68da-4121-d33e-c40a6c5767a0" /><meta name="guid" content="06abeb89-68da-4121-d33e-c40a6c5767a0" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqBinaryWriter<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Write Method (Boolean)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Writes a boolean value to the current writer.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBCAAAAA_tabimgleft"></div><div id="ID0ECBCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBCAAAAA_tabimgright"></div></div><div id="ID0ECBCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">bool</span> <span class="parameter">b</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public void Write(
bool b
)</pre></div><div id="ID0ECBCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">Write</span> (
<span class="parameter">b</span> <span class="keyword">As</span> <span class="identifier">Boolean</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Sub Write (
b As Boolean
)</pre></div><div id="ID0ECBCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">bool</span> <span class="parameter">b</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
void Write(
bool b
)</pre></div><div id="ID0ECBCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="b"><dt><span class="parameter">b</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/a28wyd50" target="_blank">System<span id="ID0EBCAAACAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCAAACAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Boolean</a><br /><span>The boolean value to be written.</span></dd></dl></div><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="46c3c8f6-eac2-96d5-3ff0-d837669e9557.htm" target="">DryadLinqBinaryWriter Class</a></div><div class="seeAlsoStyle"><a href="a520e94d-0d05-1c66-4b54-06b43eac5735.htm" target="">Write Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqBinaryWriter.Write+Method+(Boolean)+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,12 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqJobInfo Properties</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="DryadLinqJobInfo class, properties" /><meta name="Microsoft.Help.Id" content="Properties.T:Microsoft.Research.DryadLinq.DryadLinqJobInfo" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="06fee6ad-aae4-3914-38a5-269ea8886d4a" /><meta name="guid" content="06fee6ad-aae4-3914-38a5-269ea8886d4a" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqJobInfo Properties</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><p>The <a href="1286706e-b13a-d4da-31b6-a8e9095728c7.htm" target="">DryadLinqJobInfo</a> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Properties</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="6ead0e05-329b-6672-cf9b-b13587e53520.htm" target="">JobIds</a></td><td><div class="summary">
Gets the job ids of the DryadLINQ jobs.
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="1286706e-b13a-d4da-31b6-a8e9095728c7.htm" target="">DryadLinqJobInfo Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqJobInfo+Properties+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,64 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>ForkTuple(T1, T2, T3) Structure</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ForkTuple%3CT1%2C T2%2C T3%3E structure" /><meta name="System.Keywords" content="Microsoft.Research.DryadLinq.ForkTuple%3CT1%2C T2%2C T3%3E structure" /><meta name="System.Keywords" content="ForkTuple%3CT1%2C T2%2C T3%3E structure, about ForkTuple%3CT1%2C T2%2C T3%3E structure" /><meta name="System.Keywords" content="ForkTuple(Of T1%2C T2%2C T3) structure" /><meta name="System.Keywords" content="Microsoft.Research.DryadLinq.ForkTuple(Of T1%2C T2%2C T3) structure" /><meta name="System.Keywords" content="ForkTuple(Of T1%2C T2%2C T3) structure, about ForkTuple(Of T1%2C T2%2C T3) structure" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.ForkTuple`3" /><meta name="Microsoft.Help.Id" content="T:Microsoft.Research.DryadLinq.ForkTuple`3" /><meta name="Description" content="Represents a tuple of three elements that may not have valid values." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="07206258-2e2e-6aa3-4c79-0c0674875849" /><meta name="guid" content="07206258-2e2e-6aa3-4c79-0c0674875849" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">ForkTuple<span id="ID0EHBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T1</span>, <span class="typeparameter">T2</span>, <span class="typeparameter">T3</span><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Structure</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Represents a tuple of three elements that may not have valid values.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBGAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBGAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBGAAAAA_tabimgleft"></div><div id="ID0ECBGAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBGAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBGAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBGAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBGAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBGAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBGAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBGAAAAA_tabimgright"></div></div><div id="ID0ECBGAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBGAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBGAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBGAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBGAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBGAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBGAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBGAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre>[<span class="identifier">SerializableAttribute</span>]
<span class="keyword">public</span> <span class="keyword">struct</span> <span class="identifier">ForkTuple</span>&lt;T1, T2, T3&gt; : <span class="identifier">IEquatable</span>&lt;<span class="identifier">ForkTuple</span>&lt;T1, T2, T3&gt;&gt;</pre></div><div id="ID0ECBGAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>[SerializableAttribute]
public struct ForkTuple&lt;T1, T2, T3&gt; : IEquatable&lt;ForkTuple&lt;T1, T2, T3&gt;&gt;</pre></div><div id="ID0ECBGAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">SerializableAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Structure</span> <span class="identifier">ForkTuple</span>(<span class="keyword">Of</span> T1, T2, T3)
<span class="keyword">Implements</span> <span class="identifier">IEquatable</span>(<span class="keyword">Of</span> <span class="identifier">ForkTuple</span>(<span class="keyword">Of</span> T1, T2, T3))</pre></div><div id="ID0ECBGAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;SerializableAttribute&gt;
Public Structure ForkTuple(Of T1, T2, T3)
Implements IEquatable(Of ForkTuple(Of T1, T2, T3))</pre></div><div id="ID0ECBGAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>[<span class="identifier">SerializableAttribute</span>]
<span class="keyword">generic</span>&lt;<span class="keyword">typename</span> T1, <span class="keyword">typename</span> T2, <span class="keyword">typename</span> T3&gt;
<span class="keyword">public</span> <span class="keyword">value class</span> <span class="identifier">ForkTuple</span> : <span class="identifier">IEquatable</span>&lt;<span class="identifier">ForkTuple</span>&lt;T1, T2, T3&gt;&gt;</pre></div><div id="ID0ECBGAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>[SerializableAttribute]
generic&lt;typename T1, typename T2, typename T3&gt;
public value class ForkTuple : IEquatable&lt;ForkTuple&lt;T1, T2, T3&gt;&gt;</pre></div><div id="ID0ECBGAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBGAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBGAAAAA');</script></div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Type Parameters</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><dl><dt><span class="parameter">T1</span></dt><dd>The type of the first element</dd><dt><span class="parameter">T2</span></dt><dd>The type of the second element</dd><dt><span class="parameter">T3</span></dt><dd>The type of the third element</dd></dl><p>The <span class="selflink">ForkTuple<span id="ID0ECBFAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBFAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1, T2, T3<span id="ID0EABFAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EABFAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script></span> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Constructors</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="83e9427c-d320-6f1e-69a7-07bf990f5552.htm" target="">ForkTuple<span id="ID0ECABABEAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABABEAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1, T2, T3<span id="ID0EAABABEAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EAABABEAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script></a></td><td><div class="summary">
Initializes an instance of ForkTuple of three elements. All the elements have valid values.
</div></td></tr></table><a href="#mainBody" target="">Top</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/2dts52z7" target="_blank">Equals(Object)</a></td><td><div class="summary">Indicates whether this instance and a specified object are equal.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/aey3s293" target="_blank">ValueType</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="c4b2ccbe-fcea-9746-7d03-7deea5de820e.htm" target="">Equals(ForkTuple<span id="ID0EDABDBDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABDBDAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1, T2, T3<span id="ID0EBABDBDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABDBDAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a></td><td><div class="summary">
Determines whether the current ForkTuple is equal to a specified ForkTuple.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="56301ca8-b00b-32b5-1da3-bba21860db99.htm" target="">GetHashCode</a></td><td><div class="summary">
Gets the hash code of this instance of ForkTuple.
</div> (Overrides <a href="http://msdn2.microsoft.com/en-us/library/y3509fc2" target="_blank">ValueType<span id="ID0ECBACBDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBACBDAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>GetHashCode<span id="ID0EABACBDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EABACBDAAAAA?vb=|cpp=()|cs=()|fs=()|nu=()");
</script></a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/dfwy45w9" target="_blank">GetType</a></td><td><div class="summary">Gets the <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">Type</a> of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/wb77sz3h" target="_blank">ToString</a></td><td><div class="summary">Returns the fully qualified type name of this instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/aey3s293" target="_blank">ValueType</a>.)</td></tr></table><a href="#mainBody" target="">Top</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Properties</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="3ede29b7-a419-b762-7c5f-f617c3ad4ea0.htm" target="">First</a></td><td><div class="summary">
Gets and sets the first element.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="4e4b1e20-e630-adfc-12f4-e999aa73e5d3.htm" target="">HasFirst</a></td><td><div class="summary">
true iff the value of the first element is valid.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="9258db36-5e75-9efc-e607-ef6f5ba67a4a.htm" target="">HasSecond</a></td><td><div class="summary">
true iff the value of the second element is valid.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="fdcf7716-268c-05d8-c969-99fcc6611106.htm" target="">HasThird</a></td><td><div class="summary">
true iff the value of the third element is valid.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="86d97af6-9c8c-ccbb-4a2b-386657c1a9fe.htm" target="">Second</a></td><td><div class="summary">
Gets and sets the second element.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="c90df8c7-3a30-7c79-ce29-c37b9def4567.htm" target="">Third</a></td><td><div class="summary">
Gets and sets the third element.
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+ForkTuple(T1%2c+T2%2c+T3)+Structure+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,144 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.ApplyPerPartition Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ApplyPerPartition method" /><meta name="System.Keywords" content="DryadLinqQueryable.ApplyPerPartition method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqQueryable.ApplyPerPartition" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqQueryable.ApplyPerPartition``2" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqQueryable.ApplyPerPartition``3" /><meta name="Microsoft.Help.Id" content="Overload:Microsoft.Research.DryadLinq.DryadLinqQueryable.ApplyPerPartition" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="072ffb1e-75fa-7aa1-fb37-b34393ddcab4" /><meta name="guid" content="072ffb1e-75fa-7aa1-fb37-b34393ddcab4" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>ApplyPerPartition Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Overload List</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="09443df1-c90c-bb8f-a15e-b24dadb75fe3.htm" target="">ApplyPerPartition<span id="ID0EVABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EVABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1, T2<span id="ID0ETABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ETABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0ERABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1<span id="ID0EPABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0ENABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0ELABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ELABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>IEnumerable<span id="ID0EJABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1<span id="ID0EHABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, IEnumerable<span id="ID0EFABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFABDBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T2<span id="ID0EDABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBABDBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABDBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a></td><td><div class="summary">
Compute applyFunc(source)
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="90ac62ab-f2ae-1077-2afc-ee91c36c9b9d.htm" target="">ApplyPerPartition<span id="ID0E4ABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E4ABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1, T2<span id="ID0E2ABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E2ABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0EZABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EZABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1<span id="ID0EXABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EXABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, <span id="ID0EVABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EVABCBCAAAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script>IQueryable<span id="ID0ETABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ETABCBCAAAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script>, Expression<span id="ID0ERABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EPABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>IEnumerable<span id="ID0ENABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1<span id="ID0ELABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ELABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, <span id="ID0EJABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJABCBCAAAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script>IEnumerable<span id="ID0EHABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHABCBCAAAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script>, IEnumerable<span id="ID0EFABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFABCBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T2<span id="ID0EDABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBABCBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABCBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Boolean)</a></td><td><div class="summary">
Compute applyFunc on multiple sources
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="e4b24cc1-7a50-2b77-cae2-1a9f5c3e2966.htm" target="">ApplyPerPartition<span id="ID0E5ABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E5ABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1, T2<span id="ID0E3ABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E3ABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0E1ABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E1ABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1<span id="ID0EYABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EYABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, <span id="ID0EWABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EWABBBCAAAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script>IQueryable<span id="ID0EUABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EUABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1<span id="ID0ESABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ESABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ERABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERABBBCAAAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script>, Expression<span id="ID0EPABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0ENABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span id="ID0EMABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMABBBCAAAAA?vb=|cpp=array&lt;|cs=|fs=|nu=");
</script>IEnumerable<span id="ID0EKABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1<span id="ID0EIABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EHABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHABBBCAAAAA?vb=()|cpp=&gt;|cs=[]|fs=[]|nu=[]");
</script>, IEnumerable<span id="ID0EFABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T2<span id="ID0EDABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Boolean)</a></td><td><div class="summary">
Compute applyFunc on multiple sources
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="714968d4-cbe3-f362-8dbc-b3ca0c050592.htm" target="">ApplyPerPartition<span id="ID0E4ABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E4ABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1, T2, T3<span id="ID0E2ABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0E2ABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0EZABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EZABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1<span id="ID0EXABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EXABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, IQueryable<span id="ID0EVABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EVABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T2<span id="ID0ETABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ETABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0ERABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EPABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>IEnumerable<span id="ID0ENABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1<span id="ID0ELABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ELABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, IEnumerable<span id="ID0EJABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T2<span id="ID0EHABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, IEnumerable<span id="ID0EFABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T3<span id="ID0EDABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Boolean)</a></td><td><div class="summary">
Compute applyFunc(source1, source2)
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.ApplyPerPartition+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,54 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.AverageAsQuery Method (IQueryable(Int32))</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqQueryable.AverageAsQuery(System.Linq.IQueryable{System.Int32})" /><meta name="Description" content="Same as , but returns an &lt;&gt; containing a single element. Computes the average of a set of Int32 values in the input dataset." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="092201f1-5901-0976-887e-a1f961caaf66" /><meta name="guid" content="092201f1-5901-0976-887e-a1f961caaf66" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0EFBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>AverageAsQuery Method (IQueryable<span id="ID0EDBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Int32<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Same as <a href="http://msdn2.microsoft.com/en-us/library/bb361284" target="_blank">Average(IQueryable<span id="ID0EDFMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDFMAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Int32<span id="ID0EBFMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFMAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a>, but returns an <a href="http://msdn2.microsoft.com/en-us/library/bb495796" target="_blank">IQueryable</a>&lt;<a href="http://msdn2.microsoft.com/en-us/library/643eft0t" target="_blank">Double</a>&gt;
containing a single element. Computes the average of a set of Int32 values in the input
dataset.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECUCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECUCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECUCAAAAA_tabimgleft"></div><div id="ID0ECUCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECUCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECUCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECUCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECUCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECUCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECUCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECUCAAAAA_tabimgright"></div></div><div id="ID0ECUCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECUCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECUCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECUCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECUCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECUCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECUCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECUCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">double</span>&gt; <span class="identifier">AverageAsQuery</span>(
<span class="keyword">this</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">int</span>&gt; <span class="parameter">source</span>
)</pre></div><div id="ID0ECUCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static IQueryable&lt;double&gt; AverageAsQuery(
this IQueryable&lt;int&gt; source
)</pre></div><div id="ID0ECUCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">ExtensionAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">AverageAsQuery</span> (
<span class="parameter">source</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> <span class="identifier">Integer</span>)
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> <span class="identifier">Double</span>)</pre></div><div id="ID0ECUCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;ExtensionAttribute&gt;
Public Shared Function AverageAsQuery (
source As IQueryable(Of Integer)
) As IQueryable(Of Double)</pre></div><div id="ID0ECUCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
[<span class="identifier">ExtensionAttribute</span>]
<span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">double</span>&gt;^ <span class="identifier">AverageAsQuery</span>(
<span class="identifier">IQueryable</span>&lt;<span class="identifier">int</span>&gt;^ <span class="parameter">source</span>
)</pre></div><div id="ID0ECUCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
[ExtensionAttribute]
static IQueryable&lt;double&gt;^ AverageAsQuery(
IQueryable&lt;int&gt;^ source
)</pre></div><div id="ID0ECUCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECUCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECUCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="source"><dt><span class="parameter">source</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBFAATCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFAATCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EEAATCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEAATCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">Int32</a><span id="ID0ECAATCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECAATCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>A set of Int32 values to calculate the average of</span></dd></dl></div><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EPCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/643eft0t" target="_blank">Double</a><span id="ID0ENCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The average of the values in the input dataset<h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EHCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">Int32</a><span id="ID0EFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="http://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank">Extension Methods (Visual Basic)</a> or <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" target="_blank">Extension Methods (C# Programming Guide)</a>.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="1b4e9327-9b61-e353-0051-d36bb399ce3e.htm" target="">AverageAsQuery Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.AverageAsQuery+Method+(IQueryable(Int32))+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,135 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqContext Class</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="DryadLinqContext class" /><meta name="System.Keywords" content="Microsoft.Research.DryadLinq.DryadLinqContext class" /><meta name="System.Keywords" content="DryadLinqContext class, about DryadLinqContext class" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext" /><meta name="Microsoft.Help.Id" content="T:Microsoft.Research.DryadLinq.DryadLinqContext" /><meta name="Description" content="Represents the context necessary to prepare and execute a DryadLinq Query," /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="093a0025-a8c4-d1e2-a289-d3863b1a845f" /><meta name="guid" content="093a0025-a8c4-d1e2-a289-d3863b1a845f" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqContext Class</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Represents the context necessary to prepare and execute a DryadLinq Query,
</div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Inheritance Hierarchy</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">System<span id="ID0EBERAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBERAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Object</a><br />  <span class="selflink">Microsoft.Research.DryadLinq<span id="ID0EBBRAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBRAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>DryadLinqContext</span><br /><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECAHAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECAHAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECAHAAAAA_tabimgleft"></div><div id="ID0ECAHAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAHAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECAHAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAHAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECAHAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAHAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECAHAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECAHAAAAA_tabimgright"></div></div><div id="ID0ECAHAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECAHAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECAHAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECAHAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECAHAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECAHAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECAHAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECAHAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">class</span> <span class="identifier">DryadLinqContext</span> : <span class="identifier">IDisposable</span>,
<span class="identifier">IEquatable</span>&lt;<span class="identifier">DryadLinqContext</span>&gt;</pre></div><div id="ID0ECAHAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public class DryadLinqContext : IDisposable,
IEquatable&lt;DryadLinqContext&gt;</pre></div><div id="ID0ECAHAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Class</span> <span class="identifier">DryadLinqContext</span> 
<span class="keyword">Implements</span> <span class="identifier">IDisposable</span>, <span class="identifier">IEquatable</span>(<span class="keyword">Of</span> <span class="identifier">DryadLinqContext</span>)</pre></div><div id="ID0ECAHAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Class DryadLinqContext 
Implements IDisposable, IEquatable(Of DryadLinqContext)</pre></div><div id="ID0ECAHAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span> <span class="keyword">ref class</span> <span class="identifier">DryadLinqContext</span> : <span class="identifier">IDisposable</span>,
<span class="identifier">IEquatable</span>&lt;<span class="identifier">DryadLinqContext</span>^&gt;</pre></div><div id="ID0ECAHAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public ref class DryadLinqContext : IDisposable,
IEquatable&lt;DryadLinqContext^&gt;</pre></div><div id="ID0ECAHAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECAHAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECAHAAAAA');</script></div><p>The <span class="selflink">DryadLinqContext</span> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Constructors</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="7eed4ffa-872c-28db-b869-d39cd3277b45.htm" target="">DryadLinqContext(DryadLinqCluster)</a></td><td><div class="summary">
Initializes a new instance of the DryadLinqContext class for a specified cluster.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="c7d60fb2-867b-688c-9429-3cf46ed008e3.htm" target="">DryadLinqContext(Int32, String)</a></td><td><div class="summary">
Initializes a new instance of the DryadLinqContext class for local execution.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="d59f82a7-d32d-f25d-d836-3f4605133e99.htm" target="">DryadLinqContext(String, PlatformKind)</a></td><td><div class="summary">
Initializes a new instance of the DryadLinqContext class for a YARN cluster.
</div></td></tr></table><a href="#mainBody" target="">Top</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="2d28ac74-38d0-f39d-2a5b-879b8089889b.htm" target="">AzureAccountKey</a></td><td><div class="summary">
Get the key associated with a named account, or null if it is not registered or auto-detected from
the subscriptions
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="c441f14e-35fd-3f66-3e98-95bba06f8461.htm" target="">ClientVersion</a></td><td><div class="summary">
Version of the DryadLinq client components
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="adbb7cea-3cd7-a024-d14b-35fc87b257a7.htm" target="">Dispose</a></td><td><div class="summary">
Releases all resources used by the DryadLinqContext.
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/bsc2ak47" target="_blank">Equals(Object)</a></td><td><div class="summary">Determines whether the specified <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a> is equal to the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="29860ba9-7870-df8e-9abf-ee6b5441fdcc.htm" target="">Equals(DryadLinqContext)</a></td><td><div class="summary">
Determines whether this instance of DryadLinqContext is equal to another instance
of <span class="selflink">DryadLinqContext</span>.
</div></td></tr><tr data="protected;inherited;notNetfw;"><td><img src="./../icons/protmethod.gif" alt="Protected method" title="Protected method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/4k87zsw7" target="_blank">Finalize</a></td><td><div class="summary">Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="3f22686d-c67f-2db6-f48b-73e16e30652b.htm" target="">FromEnumerable<span id="ID0ECABHBEAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABHBEAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T<span id="ID0EAABHBEAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EAABHBEAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script></a></td><td><div class="summary">
Converts an IEnumerable{T} to a DryadLinq specialized IQueryable{T}.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="c000253c-a00e-58a3-d16c-d58bee051b6e.htm" target="">FromStore<span id="ID0EDABGBEAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABGBEAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T<span id="ID0EBABGBEAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABGBEAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(String)</a></td><td><div class="summary">
Open a dataset as a DryadLinq specialized IQueryable{T}.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="f7de5c1e-ed36-fdf6-7ee7-ffb58d2ea979.htm" target="">FromStore<span id="ID0EDABFBEAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABFBEAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T<span id="ID0EBABFBEAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABFBEAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(Uri)</a></td><td><div class="summary">
Open a dataset as a DryadLinq specialized IQueryable{T}.
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/zdee4b3y" target="_blank">GetHashCode</a></td><td><div class="summary">Serves as a hash function for a particular type. </div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/dfwy45w9" target="_blank">GetType</a></td><td><div class="summary">Gets the <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">Type</a> of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="protected;inherited;notNetfw;"><td><img src="./../icons/protmethod.gif" alt="Protected method" title="Protected method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/57ctke0a" target="_blank">MemberwiseClone</a></td><td><div class="summary">Creates a shallow copy of the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="17d622f1-6799-aeab-3637-9d66a4d79f0b.htm" target="">RegisterAzureAccount</a></td><td><div class="summary">
Register a named account with the specified storage key, so that key won't need to be specified in Azure blob URIs
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/7bxwbwt2" target="_blank">ToString</a></td><td><div class="summary">Returns a string that represents the current object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr></table><a href="#mainBody" target="">Top</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Properties</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="06266f74-a819-017c-e03f-0f9761a28c52.htm" target="">CompileForVertexDebugging</a></td><td><div class="summary">
Gets or sets the value specifying whether to compile code with debugging support.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="0bc5d95a-ef00-1073-ac66-8aa04e76bea4.htm" target="">DebugBreak</a></td><td><div class="summary">
Gets and sets the value specifying whether a vertex should break into the debugger
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="1a3367ed-b951-d562-fbbc-4da581fb22ff.htm" target="">DryadHomeDirectory</a></td><td><div class="summary">
Gets or sets the bin directory for Dryad.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="e5330d19-786b-ff5d-45d5-63906af83283.htm" target="">EnableMultiThreadingInVertex</a></td><td><div class="summary">
Gets or sets whether user-defined methods and custom serializers may be called on
multiple threads of a single process.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="446c7fd3-88cd-80be-dc09-2e6a58cc0653.htm" target="">EnableSpeculativeDuplication</a></td><td><div class="summary">
Enables or disables speculative duplication of vertices based on runtime performance analysis.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="2deb1aaa-bfdc-353f-0c97-a8adbb809785.htm" target="">ExecutorKind</a></td><td><div class="summary">
Gets and sets the job executor. The current release only supports Dryad.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="39e61761-eb29-06d9-fb5e-ca83550789ad.htm" target="">ForceGC</a></td><td><div class="summary">
Gets or sets whether to run GC after Moxie runs each task.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="248076fc-57c2-c48c-d06a-c9e7bc3c08f9.htm" target="">GraphManagerNode</a></td><td><div class="summary">
Gets or sets the node that should be used for running the Dryad Graph Manager task.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="21b0689d-8e56-2eec-1ee9-f466c31ba722.htm" target="">HeadNode</a></td><td><div class="summary">
Gets or sets the head node for executing a DryadLinq query.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="cae4c54e-1f13-c9b9-2c72-935d9df74655.htm" target="">IntermediateDataCompressionScheme</a></td><td><div class="summary">
Gets or sets the value specifying whether data passed between stages will be compressed.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="60213299-6472-65f7-8298-246f575f4519.htm" target="">JobEnvironmentVariables</a></td><td><div class="summary">
Gets the collection of environment variables associated with the DryadLINQ job.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="ba86aa92-5fe3-fac7-c21c-a5a381b27eb3.htm" target="">JobFriendlyName</a></td><td><div class="summary">
Gets or sets the descriptive name used to describe the DryadLINQ job.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="a09a1cc0-3e1c-6484-eee1-abf6f43e8830.htm" target="">JobMaxNodes</a></td><td><div class="summary">
Gets or sets the maximum number of cluster nodes for the DryadLINQ job.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="9c6a16ea-f074-0481-246b-4a8b93acd4a6.htm" target="">JobMinNodes</a></td><td><div class="summary">
Gets or sets the minimum number of cluster nodes for the DryadLINQ job.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="d94766a9-385e-6972-0d01-e0ad496422d3.htm" target="">JobPassword</a></td><td><div class="summary">
Gets or sets the RunAs password for jobs submitted to the cluster.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="abece889-c5a1-aa62-d2c6-6e371273a12e.htm" target="">JobRuntimeLimit</a></td><td><div class="summary">
Gets or sets the maximum execution time for the DryadLINQ job, in seconds.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="024262a5-8d35-80f8-1b76-7a6242ad400b.htm" target="">JobUsername</a></td><td><div class="summary">
Gets or sets the RunAs password for jobs submitted to the cluster.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="bb832ac9-26e2-8dcf-6e10-da1f43571fc8.htm" target="">LocalDebug</a></td><td><div class="summary">
Gets or sets the value specifying whether to use Local debugging mode.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="f49487bb-3b0f-4054-0c17-ffdca967af5e.htm" target="">LocalExecution</a></td><td><div class="summary">
Gets or sets the value specifying whether to use Local execution mode.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="646b413a-cfac-0795-0766-86606d8a5410.htm" target="">MatchClientNetFrameworkVersion</a></td><td><div class="summary">
Configures query jobs to be launched on the cluster nodes against a .NET framework version
matching that of the client process. This should only be set if all cluster nodes are known to have
the same .NET version as the client.
When set to false (default), the vertex code will be compiled and run against .NET Framework 3.5.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="3bcf5415-69d6-0f64-fa4f-fa1ba7cade31.htm" target="">NodeGroup</a></td><td><div class="summary">
Gets or sets the name of the compute node group when running on the cluster.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="1b4bb2db-3cb5-2bb3-22b7-d0d1f24eb7a6.htm" target="">OutputDataCompressionScheme</a></td><td><div class="summary">
Gets or sets the value specifying the compression scheme for output data.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="e2bc33c7-d205-23d9-e8bc-11f02dfae406.htm" target="">PartitionUncPath</a></td><td><div class="summary">
Gets or sets the partition UNC path used when constructing a partitioned table.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="9293e769-1a4e-37c1-3236-ef5c533e3e00.htm" target="">PeloponneseHomeDirectory</a></td><td><div class="summary">
Gets or sets the bin directory for Peloponnese.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="bb90c987-f871-d38d-aced-5665dfb21853.htm" target="">PlatformKind</a></td><td><div class="summary">
Gets or sets the service platform
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="e25f71a6-3fa2-ac4f-bd57-1edb3da4c44e.htm" target="">ResourcesToAdd</a></td><td><div class="summary">
Get the list of resources to add to the DryadLINQ job.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="b21ce425-bc26-fe1e-cd75-dee611a38fda.htm" target="">ResourcesToRemove</a></td><td><div class="summary">
Get the list of resources to be excluded from the DryadLINQ job.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="b0be9bd4-afbe-4239-4dbb-6a5405eeb1c1.htm" target="">RuntimeTraceLevel</a></td><td><div class="summary">
Gets or sets the trace level to use for DryadLINQ Query jobs.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="17d9d840-e581-26d0-9aaf-16ca5687adda.htm" target="">SelectOrderPreserving</a></td><td><div class="summary">
Gets or sets whether certain operators will preserve item ordering.
When true, the Select, SelectMany and Where operators will preserve item ordering;
otherwise, they may shuffle the input items as they are processed.
</div></td></tr></table><a href="#mainBody" target="">Top</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Remarks</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><p>
DryadLinqContext is the main entry point for the DryadLINQ framework.
The context that is maintained by a DryadLinqContext instance includes
configuration information.
</p><p>
A DryadLinqContext may be reused by multiple queries and query executions.
</p><p>
A DryadLinqContext may hold open connections to cluster services.
To release these connections, call DryadLinqContext.Dispose().
</p><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqContext+Class+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,94 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.ApplyPerPartition(T1, T2) Method (IQueryable(T1), Expression(Func(IEnumerable(T1), IEnumerable(T2))))</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqQueryable.ApplyPerPartition``2(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1}}})" /><meta name="Description" content="Compute applyFunc(source)" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="09443df1-c90c-bb8f-a15e-b24dadb75fe3" /><meta name="guid" content="09443df1-c90c-bb8f-a15e-b24dadb75fe3" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0EZBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EZBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>ApplyPerPartition<span id="ID0EXBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EXBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T1</span>, <span class="typeparameter">T2</span><span id="ID0ETBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ETBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Method (IQueryable<span id="ID0ERBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T1</span><span id="ID0EPBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0ENBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0ELBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ELBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>IEnumerable<span id="ID0EJBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T1</span><span id="ID0EHBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, IEnumerable<span id="ID0EFBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T2</span><span id="ID0EDBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Compute applyFunc(source)
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECVCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECVCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECVCAAAAA_tabimgleft"></div><div id="ID0ECVCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECVCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECVCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECVCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECVCAAAAA_tabimgright"></div></div><div id="ID0ECVCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECVCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECVCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECVCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECVCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECVCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECVCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECVCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;T2&gt; <span class="identifier">ApplyPerPartition</span>&lt;T1, T2&gt;(
<span class="keyword">this</span> <span class="identifier">IQueryable</span>&lt;T1&gt; <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;<span class="identifier">IEnumerable</span>&lt;T1&gt;, <span class="identifier">IEnumerable</span>&lt;T2&gt;&gt;&gt; <span class="parameter">applyFunc</span>
)</pre></div><div id="ID0ECVCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static IQueryable&lt;T2&gt; ApplyPerPartition&lt;T1, T2&gt;(
this IQueryable&lt;T1&gt; source,
Expression&lt;Func&lt;IEnumerable&lt;T1&gt;, IEnumerable&lt;T2&gt;&gt;&gt; applyFunc
)</pre></div><div id="ID0ECVCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">ExtensionAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">ApplyPerPartition</span>(<span class="keyword">Of</span> T1, T2) (
<span class="parameter">source</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> T1),
<span class="parameter">applyFunc</span> <span class="keyword">As</span> <span class="identifier">Expression</span>(<span class="keyword">Of</span> <span class="identifier">Func</span>(<span class="keyword">Of</span> <span class="identifier">IEnumerable</span>(<span class="keyword">Of</span> T1), <span class="identifier">IEnumerable</span>(<span class="keyword">Of</span> T2)))
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> T2)</pre></div><div id="ID0ECVCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;ExtensionAttribute&gt;
Public Shared Function ApplyPerPartition(Of T1, T2) (
source As IQueryable(Of T1),
applyFunc As Expression(Of Func(Of IEnumerable(Of T1), IEnumerable(Of T2)))
) As IQueryable(Of T2)</pre></div><div id="ID0ECVCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
[<span class="identifier">ExtensionAttribute</span>]
<span class="keyword">generic</span>&lt;<span class="keyword">typename</span> T1, <span class="keyword">typename</span> T2&gt;
<span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;T2&gt;^ <span class="identifier">ApplyPerPartition</span>(
<span class="identifier">IQueryable</span>&lt;T1&gt;^ <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;<span class="identifier">IEnumerable</span>&lt;T1&gt;^, <span class="identifier">IEnumerable</span>&lt;T2&gt;^&gt;^&gt;^ <span class="parameter">applyFunc</span>
)</pre></div><div id="ID0ECVCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
[ExtensionAttribute]
generic&lt;typename T1, typename T2&gt;
static IQueryable&lt;T2&gt;^ ApplyPerPartition(
IQueryable&lt;T1&gt;^ source,
Expression&lt;Func&lt;IEnumerable&lt;T1&gt;^, IEnumerable&lt;T2&gt;^&gt;^&gt;^ applyFunc
)</pre></div><div id="ID0ECVCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECVCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECVCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="source"><dt><span class="parameter">source</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBFABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFABUCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EEABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEABUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T1</span></span><span id="ID0ECABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>The input dataset</span></dd></dl><dl paramName="applyFunc"><dt><span class="parameter">applyFunc</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb335710" target="_blank">System.Linq.Expressions<span id="ID0EBQAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBQAAUCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Expression</a><span id="ID0EPAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/bb549151" target="_blank">Func</a><span id="ID0ENAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/9eekhta0" target="_blank">IEnumerable</a><span id="ID0ELAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ELAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T1</span></span><span id="ID0EJAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, <a href="http://msdn2.microsoft.com/en-us/library/9eekhta0" target="_blank">IEnumerable</a><span id="ID0EGAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T2</span></span><span id="ID0EEAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EDAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>The function to be applied to the input dataset</span></dd></dl></div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Type Parameters</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><dl><dt><span class="parameter">T1</span></dt><dd>The type of the records of the input dataset</dd><dt><span class="parameter">T2</span></dt><dd>The type of the records of the output dataset</dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EPCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T2</span></span><span id="ID0ENCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The result of computing applyFunc(source)<h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EHCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">T1</span></span><span id="ID0EFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="http://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank">Extension Methods (Visual Basic)</a> or <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" target="_blank">Extension Methods (C# Programming Guide)</a>.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="072ffb1e-75fa-7aa1-fb37-b34393ddcab4.htm" target="">ApplyPerPartition Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.ApplyPerPartition(T1%2c+T2)+Method+(IQueryable(T1)%2c+Expression(Func(IEnumerable(T1)%2c+IEnumerable(T2))))+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,32 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="GenericDecomposable%3CTDecomposable%2C TSource%2C TAccumulate%2C TResult%3E class, methods" /><meta name="System.Keywords" content="GenericDecomposable(Of TDecomposable%2C TSource%2C TAccumulate%2C TResult) class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Microsoft.Research.DryadLinq.GenericDecomposable`4" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="09b7f762-48da-5a16-77e3-8b841c6f83ea" /><meta name="guid" content="09b7f762-48da-5a16-77e3-8b841c6f83ea" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">GenericDecomposable<span id="ID0EJBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TDecomposable</span>, <span class="typeparameter">TSource</span>, <span class="typeparameter">TAccumulate</span>, <span class="typeparameter">TResult</span><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Methods</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><p>The <a href="11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" target="">GenericDecomposable<span id="ID0ECBDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBDAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TDecomposable, TSource, TAccumulate, TResult<span id="ID0EABDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EABDAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script></a> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="ffa4b6ac-5e03-29aa-ec10-7aab8893edd2.htm" target="">Accumulate</a></td><td><div class="summary">
Accumulates an input element into the accumulator value.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="982d658a-3590-02e2-e86c-5d1603e2ff7b.htm" target="">FinalReduce</a></td><td><div class="summary">
Produces the final value from an accumulator value.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="7ad863dd-2b05-4189-31b3-b8e3fe344c31.htm" target="">Initialize</a></td><td><div class="summary">
Initializes the initial state of the IDecomposable object.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="032e436e-efdc-433f-654c-75ce93cdb5d2.htm" target="">RecursiveAccumulate</a></td><td><div class="summary">
Combines two accumulator values into one.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="3f7c6b9f-b02f-4152-9d67-ce663a9710f7.htm" target="">Seed</a></td><td><div class="summary">
Converts an input element to an intermediate accumulator value.
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="11c77de4-bb21-4879-6a37-daaf58adb3cf.htm" target="">GenericDecomposable<span id="ID0EDABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABAAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TDecomposable, TSource, TAccumulate, TResult<span id="ID0EBABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABAAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+GenericDecomposable(TDecomposable%2c+TSource%2c+TAccumulate%2c+TResult)+Methods+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,28 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqBinaryWriter.Write Method (Double)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqBinaryWriter.Write(System.Double)" /><meta name="Description" content="Writes a 64-bit floating point number to the current writer." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="0a7aa40b-fc7c-5446-0fc8-d8747f317d31" /><meta name="guid" content="0a7aa40b-fc7c-5446-0fc8-d8747f317d31" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqBinaryWriter<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Write Method (Double)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Writes a 64-bit floating point number to the current writer.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBCAAAAA_tabimgleft"></div><div id="ID0ECBCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBCAAAAA_tabimgright"></div></div><div id="ID0ECBCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">double</span> <span class="parameter">val</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public void Write(
double val
)</pre></div><div id="ID0ECBCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">Write</span> (
<span class="parameter">val</span> <span class="keyword">As</span> <span class="identifier">Double</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Sub Write (
val As Double
)</pre></div><div id="ID0ECBCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">double</span> <span class="parameter">val</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
void Write(
double val
)</pre></div><div id="ID0ECBCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="val"><dt><span class="parameter">val</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/643eft0t" target="_blank">System<span id="ID0EBCAAACAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCAAACAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Double</a><br /><span>A 64-bit floating point number to write.</span></dd></dl></div><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="46c3c8f6-eac2-96d5-3ff0-d837669e9557.htm" target="">DryadLinqBinaryWriter Class</a></div><div class="seeAlsoStyle"><a href="a520e94d-0d05-1c66-4b54-06b43eac5735.htm" target="">Write Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqBinaryWriter.Write+Method+(Double)+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,95 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.FirstAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Boolean)))</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqQueryable.FirstAsQuery``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})" /><meta name="Description" content="Same as , but returns an &lt;&gt; containing a single element." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="0b5ec7e8-a29f-e104-b8c6-56d15489af32" /><meta name="guid" content="0b5ec7e8-a29f-e104-b8c6-56d15489af32" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0ERBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>FirstAsQuery<span id="ID0EPBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span><span id="ID0ENBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Method (IQueryable<span id="ID0ELBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ELBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span><span id="ID0EJBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EHBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EFBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span>, Boolean<span id="ID0ECBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Same as <a href="http://msdn2.microsoft.com/en-us/library/bb535183" target="_blank">First<span id="ID0EOFNAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOFNAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0EMFNAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMFNAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0EKFNAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKFNAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0EIFNAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIFNAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EGFNAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGFNAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EEFNAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEFNAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, Boolean<span id="ID0ECFNAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECFNAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBFNAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFNAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a>, but returns an <a href="http://msdn2.microsoft.com/en-us/library/bb495796" target="_blank">IQueryable</a>&lt;<span class="typeparameter">TSource</span>&gt;
containing a single element.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECVDAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECVDAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECVDAAAAA_tabimgleft"></div><div id="ID0ECVDAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVDAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECVDAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVDAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECVDAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVDAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECVDAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECVDAAAAA_tabimgright"></div></div><div id="ID0ECVDAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECVDAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECVDAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECVDAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECVDAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECVDAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECVDAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECVDAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;TSource&gt; <span class="identifier">FirstAsQuery</span>&lt;TSource&gt;(
<span class="keyword">this</span> <span class="identifier">IQueryable</span>&lt;TSource&gt; <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, <span class="identifier">bool</span>&gt;&gt; <span class="parameter">predicate</span>
)</pre></div><div id="ID0ECVDAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static IQueryable&lt;TSource&gt; FirstAsQuery&lt;TSource&gt;(
this IQueryable&lt;TSource&gt; source,
Expression&lt;Func&lt;TSource, bool&gt;&gt; predicate
)</pre></div><div id="ID0ECVDAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">ExtensionAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">FirstAsQuery</span>(<span class="keyword">Of</span> TSource) (
<span class="parameter">source</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> TSource),
<span class="parameter">predicate</span> <span class="keyword">As</span> <span class="identifier">Expression</span>(<span class="keyword">Of</span> <span class="identifier">Func</span>(<span class="keyword">Of</span> TSource, <span class="identifier">Boolean</span>))
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> TSource)</pre></div><div id="ID0ECVDAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;ExtensionAttribute&gt;
Public Shared Function FirstAsQuery(Of TSource) (
source As IQueryable(Of TSource),
predicate As Expression(Of Func(Of TSource, Boolean))
) As IQueryable(Of TSource)</pre></div><div id="ID0ECVDAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
[<span class="identifier">ExtensionAttribute</span>]
<span class="keyword">generic</span>&lt;<span class="keyword">typename</span> TSource&gt;
<span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;TSource&gt;^ <span class="identifier">FirstAsQuery</span>(
<span class="identifier">IQueryable</span>&lt;TSource&gt;^ <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, <span class="identifier">bool</span>&gt;^&gt;^ <span class="parameter">predicate</span>
)</pre></div><div id="ID0ECVDAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
[ExtensionAttribute]
generic&lt;typename TSource&gt;
static IQueryable&lt;TSource&gt;^ FirstAsQuery(
IQueryable&lt;TSource&gt;^ source,
Expression&lt;Func&lt;TSource, bool&gt;^&gt;^ predicate
)</pre></div><div id="ID0ECVDAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECVDAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECVDAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="source"><dt><span class="parameter">source</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBFABUDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFABUDAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EEABUDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEABUDAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0ECABUDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABUDAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>The input sequence</span></dd></dl><dl paramName="predicate"><dt><span class="parameter">predicate</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb335710" target="_blank">System.Linq.Expressions<span id="ID0EBKAAUDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBKAAUDAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Expression</a><span id="ID0EJAAUDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJAAUDAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/bb549151" target="_blank">Func</a><span id="ID0EHAAUDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHAAUDAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span>, <a href="http://msdn2.microsoft.com/en-us/library/a28wyd50" target="_blank">Boolean</a><span id="ID0EDAAUDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDAAUDAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECAAUDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECAAUDAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>A predicate to test each element for a condition</span></dd></dl></div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Type Parameters</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><dl><dt><span class="parameter">TSource</span></dt><dd>The type of the elements of source</dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EPDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPDAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0ENDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENDAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The first element in the input sequence that satisfies the predicate<h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EHDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHDAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0EFDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFDAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="http://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank">Extension Methods (Visual Basic)</a> or <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" target="_blank">Extension Methods (C# Programming Guide)</a>.<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Exceptions</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="tableSection"><table><tr><th class="ps_exceptionNameColumn">Exception</th><th class="ps_exceptionConditionColumn">Condition</th></tr><tr><td><a href="692e14c6-46ed-baaf-6b0f-b36cb74fe616.htm" target="">DryadLinqException</a></td><td>No element in the input sequence satisfies the predicate</td></tr></table></div><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="9af8461f-bf9b-b3fe-d9f0-0e03dffb3a85.htm" target="">FirstAsQuery Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.FirstAsQuery(TSource)+Method+(IQueryable(TSource)%2c+Expression(Func(TSource%2c+Boolean)))+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,24 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqContext.DebugBreak Property </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="DebugBreak property" /><meta name="System.Keywords" content="DryadLinqContext.DebugBreak property" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.DebugBreak" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.get_DebugBreak" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.set_DebugBreak" /><meta name="Microsoft.Help.Id" content="P:Microsoft.Research.DryadLinq.DryadLinqContext.DebugBreak" /><meta name="Description" content="Gets and sets the value specifying whether a vertex should break into the debugger" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="0bc5d95a-ef00-1073-ac66-8aa04e76bea4" /><meta name="guid" content="0bc5d95a-ef00-1073-ac66-8aa04e76bea4" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqContext<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>DebugBreak Property </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Gets and sets the value specifying whether a vertex should break into the debugger
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECDCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECDCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECDCAAAAA_tabimgleft"></div><div id="ID0ECDCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECDCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECDCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECDCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECDCAAAAA_tabimgright"></div></div><div id="ID0ECDCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECDCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECDCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECDCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECDCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECDCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECDCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECDCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">bool</span> <span class="identifier">DebugBreak</span> { <span class="keyword">get</span>; <span class="keyword">set</span>; }</pre></div><div id="ID0ECDCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public bool DebugBreak { get; set; }</pre></div><div id="ID0ECDCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Property</span> <span class="identifier">DebugBreak</span> <span class="keyword">As</span> <span class="identifier">Boolean</span> 
<span class="keyword">Get</span> 
<span class="keyword">Set</span></pre></div><div id="ID0ECDCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Property DebugBreak As Boolean 
Get 
Set</pre></div><div id="ID0ECDCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">property</span> <span class="identifier">bool</span> <span class="identifier">DebugBreak</span> {
<span class="identifier">bool</span> <span class="keyword">get</span> ();
<span class="keyword">void</span> <span class="keyword">set</span> (<span class="identifier">bool</span> <span class="parameter">value</span>);
}</pre></div><div id="ID0ECDCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
property bool DebugBreak {
bool get ();
void set (bool value);
}</pre></div><div id="ID0ECDCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECDCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECDCAAAAA');</script></div><h4 class="subHeading">Property Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/a28wyd50" target="_blank">Boolean</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqContext.DebugBreak+Property++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,14 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqException Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="DryadLinqException class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Microsoft.Research.DryadLinq.DryadLinqException" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="0d08006d-22e5-4a13-1882-0209adfb201b" /><meta name="guid" content="0d08006d-22e5-4a13-1882-0209adfb201b" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqException Methods</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><p>The <a href="692e14c6-46ed-baaf-6b0f-b36cb74fe616.htm" target="">DryadLinqException</a> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/bsc2ak47" target="_blank">Equals</a></td><td><div class="summary">Determines whether the specified <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a> is equal to the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="protected;inherited;notNetfw;"><td><img src="./../icons/protmethod.gif" alt="Protected method" title="Protected method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/4k87zsw7" target="_blank">Finalize</a></td><td><div class="summary">Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/49kcee3b" target="_blank">GetBaseException</a></td><td><div class="summary">When overridden in a derived class, returns the <a href="http://msdn2.microsoft.com/en-us/library/c18k6c59" target="_blank">Exception</a> that is the root cause of one or more subsequent exceptions.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/c18k6c59" target="_blank">Exception</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/zdee4b3y" target="_blank">GetHashCode</a></td><td><div class="summary">Serves as a hash function for a particular type. </div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="677e55a4-eaa4-2887-7257-555abf78300e.htm" target="">GetObjectData</a></td><td><div class="summary">
Sets the SerializationInfo with information about the exception.
</div> (Overrides <a href="http://msdn2.microsoft.com/en-us/library/fwb1489e" target="_blank">Exception<span id="ID0EBBADBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBADBCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>GetObjectData(SerializationInfo, StreamingContext)</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/44zb316t" target="_blank">GetType</a></td><td><div class="summary">Gets the runtime type of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/c18k6c59" target="_blank">Exception</a>.)</td></tr><tr data="protected;inherited;notNetfw;"><td><img src="./../icons/protmethod.gif" alt="Protected method" title="Protected method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/57ctke0a" target="_blank">MemberwiseClone</a></td><td><div class="summary">Creates a shallow copy of the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/es4y6f7e" target="_blank">ToString</a></td><td><div class="summary">Creates and returns a string representation of the current exception.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/c18k6c59" target="_blank">Exception</a>.)</td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="692e14c6-46ed-baaf-6b0f-b36cb74fe616.htm" target="">DryadLinqException Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqException+Methods+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,40 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqContext Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="DryadLinqContext class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Microsoft.Research.DryadLinq.DryadLinqContext" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="0d63a0c3-846a-e70d-6184-23387d3a9160" /><meta name="guid" content="0d63a0c3-846a-e70d-6184-23387d3a9160" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqContext Methods</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><p>The <a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext</a> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="2d28ac74-38d0-f39d-2a5b-879b8089889b.htm" target="">AzureAccountKey</a></td><td><div class="summary">
Get the key associated with a named account, or null if it is not registered or auto-detected from
the subscriptions
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="c441f14e-35fd-3f66-3e98-95bba06f8461.htm" target="">ClientVersion</a></td><td><div class="summary">
Version of the DryadLinq client components
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="adbb7cea-3cd7-a024-d14b-35fc87b257a7.htm" target="">Dispose</a></td><td><div class="summary">
Releases all resources used by the DryadLinqContext.
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/bsc2ak47" target="_blank">Equals(Object)</a></td><td><div class="summary">Determines whether the specified <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a> is equal to the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="29860ba9-7870-df8e-9abf-ee6b5441fdcc.htm" target="">Equals(DryadLinqContext)</a></td><td><div class="summary">
Determines whether this instance of DryadLinqContext is equal to another instance
of <a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext</a>.
</div></td></tr><tr data="protected;inherited;notNetfw;"><td><img src="./../icons/protmethod.gif" alt="Protected method" title="Protected method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/4k87zsw7" target="_blank">Finalize</a></td><td><div class="summary">Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="3f22686d-c67f-2db6-f48b-73e16e30652b.htm" target="">FromEnumerable<span id="ID0ECABHBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABHBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T<span id="ID0EAABHBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EAABHBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script></a></td><td><div class="summary">
Converts an IEnumerable{T} to a DryadLinq specialized IQueryable{T}.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="c000253c-a00e-58a3-d16c-d58bee051b6e.htm" target="">FromStore<span id="ID0EDABGBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABGBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T<span id="ID0EBABGBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABGBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(String)</a></td><td><div class="summary">
Open a dataset as a DryadLinq specialized IQueryable{T}.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="f7de5c1e-ed36-fdf6-7ee7-ffb58d2ea979.htm" target="">FromStore<span id="ID0EDABFBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABFBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T<span id="ID0EBABFBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABFBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(Uri)</a></td><td><div class="summary">
Open a dataset as a DryadLinq specialized IQueryable{T}.
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/zdee4b3y" target="_blank">GetHashCode</a></td><td><div class="summary">Serves as a hash function for a particular type. </div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/dfwy45w9" target="_blank">GetType</a></td><td><div class="summary">Gets the <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">Type</a> of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="protected;inherited;notNetfw;"><td><img src="./../icons/protmethod.gif" alt="Protected method" title="Protected method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/57ctke0a" target="_blank">MemberwiseClone</a></td><td><div class="summary">Creates a shallow copy of the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="17d622f1-6799-aeab-3637-9d66a4d79f0b.htm" target="">RegisterAzureAccount</a></td><td><div class="summary">
Register a named account with the specified storage key, so that key won't need to be specified in Azure blob URIs
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/7bxwbwt2" target="_blank">ToString</a></td><td><div class="summary">Returns a string that represents the current object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqContext+Methods+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,14 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqBinaryReader.ReadUInt64 Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ReadUInt64 method" /><meta name="System.Keywords" content="DryadLinqBinaryReader.ReadUInt64 method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqBinaryReader.ReadUInt64" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqBinaryReader.ReadUInt64" /><meta name="Description" content="Reads a 64-bit unsigned integer from the current reader." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="0e7a8462-0d75-3d0c-7203-579f46b9765a" /><meta name="guid" content="0e7a8462-0d75-3d0c-7203-579f46b9765a" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqBinaryReader<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>ReadUInt64 Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Reads a 64-bit unsigned integer from the current reader.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECFCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECFCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECFCAAAAA_tabimgleft"></div><div id="ID0ECFCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECFCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECFCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECFCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECFCAAAAA_tabimgright"></div></div><div id="ID0ECFCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECFCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECFCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECFCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECFCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECFCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECFCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECFCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">ulong</span> <span class="identifier">ReadUInt64</span>()</pre></div><div id="ID0ECFCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public ulong ReadUInt64()</pre></div><div id="ID0ECFCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Function</span> <span class="identifier">ReadUInt64</span> <span class="keyword">As</span> <span class="identifier">ULong</span></pre></div><div id="ID0ECFCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Function ReadUInt64 As ULong</pre></div><div id="ID0ECFCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="identifier">unsigned long long</span> <span class="identifier">ReadUInt64</span>()</pre></div><div id="ID0ECFCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
unsigned long long ReadUInt64()</pre></div><div id="ID0ECFCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECFCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECFCAAAAA');</script></div><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/06cf7918" target="_blank">UInt64</a><br />A 64-bit unsigned integer.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="e2f6b120-72cd-d97c-d0c9-9ab1b4abb5b5.htm" target="">DryadLinqBinaryReader Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqBinaryReader.ReadUInt64+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,64 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqBinaryReader Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="DryadLinqBinaryReader class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Microsoft.Research.DryadLinq.DryadLinqBinaryReader" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="0f3128d9-99ac-a067-779a-bdc86f46af10" /><meta name="guid" content="0f3128d9-99ac-a067-779a-bdc86f46af10" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqBinaryReader Methods</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><p>The <a href="e2f6b120-72cd-d97c-d0c9-9ab1b4abb5b5.htm" target="">DryadLinqBinaryReader</a> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/bsc2ak47" target="_blank">Equals</a></td><td><div class="summary">Determines whether the specified <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a> is equal to the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/zdee4b3y" target="_blank">GetHashCode</a></td><td><div class="summary">Serves as a hash function for a particular type. </div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/dfwy45w9" target="_blank">GetType</a></td><td><div class="summary">Gets the <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">Type</a> of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="2ee81ea8-7bae-c5c3-321d-a2f34f52376e.htm" target="">ReadBool</a></td><td><div class="summary">
Reads a boolean value from the current reader and advances the current
position of the reader by one byte.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="40368e39-431f-8596-e970-9996a945e453.htm" target="">ReadBytes</a></td><td><div class="summary">
Reads <span class="parameter">byteCount</span> bytes into <span class="parameter">destBuffer</span> starting at <span class="parameter">offset</span>.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="f9f3883f-e817-f693-6540-03eaa31f66fe.htm" target="">ReadChar</a></td><td><div class="summary">
Reads a character from the current reader and advances the current position of the reader
according to the encoding and the character.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="5523eb71-f765-488d-a0ed-570dcebea4a3.htm" target="">ReadChars</a></td><td><div class="summary">
Reads <span class="parameter">charCount</span> chars into <span class="parameter">destBuffer</span> starting at <span class="parameter">offset</span>.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="521aa3b5-08a2-a367-d7cb-e385573c0327.htm" target="">ReadCompactInt32</a></td><td><div class="summary">
Reads a 32-bit signed integer from the current reader. Assumes that the integer
is represented in the compact format as written by WriteCompact of a DryadLinqBinaryWriter.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="72e693e2-7766-ed09-a7a3-03c782937026.htm" target="">ReadDateTime</a></td><td><div class="summary">
Reads a value of DateTime from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="74b7a3c4-0a88-c5e0-7fd7-7bcdadb47cf5.htm" target="">ReadDecimal</a></td><td><div class="summary">
Reads a decimal number from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="f8a16c4a-7d02-1d28-3f87-0c648c533771.htm" target="">ReadDouble</a></td><td><div class="summary">
Reads a 64-bit floating point number from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="35d50873-486c-2704-0353-cac33d12a191.htm" target="">ReadGuid</a></td><td><div class="summary">
Reads a value of Guid from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="81938094-e3ac-6406-639d-7bcc0b33af4d.htm" target="">ReadInt16</a></td><td><div class="summary">
Reads a 16-bit signed integer from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="154a0be2-f541-8bea-52fc-3e187bd8e65f.htm" target="">ReadInt32</a></td><td><div class="summary">
Reads a 32-bit signed integer from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="25da8afc-85f0-7323-cb4c-cb35f137add0.htm" target="">ReadInt64</a></td><td><div class="summary">
Reads a 64-bit signed integer from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="ceab139e-eca2-9ea8-9755-16c24400b59b.htm" target="">ReadRawBytes</a></td><td><div class="summary">
public helper to read into a byte*, mainly used to read preallocated fixed size,
non-integer types (Array, Guid, decimal etc)
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="d62a9fff-f98f-8edf-fa8f-b03f52bda6c1.htm" target="">ReadSByte</a></td><td><div class="summary">
Reads a signed byte from the current reader and advances the current
position of the reader by one byte.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="c9654741-0225-48f8-e9d8-75ccc332e588.htm" target="">ReadSingle</a></td><td><div class="summary">
Reads a 32-bit floating point number from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="6e7eaae4-e7a0-8254-068e-271be85cfa07.htm" target="">ReadSqlDateTime</a></td><td><div class="summary">
Reads a value of SqlDateTime from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="201552ef-4ce6-c229-b88d-da298fdf6b83.htm" target="">ReadString</a></td><td><div class="summary">
Reads a string value from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="6687a7f4-53a1-0837-c251-f424262f3040.htm" target="">ReadUByte</a></td><td><div class="summary">
Reads a byte from the current reader and advances the current position of the
reader by one byte.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="14426d10-5679-395b-3954-e340a465128a.htm" target="">ReadUInt16</a></td><td><div class="summary">
Reads a 16-bit unsigned integer from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="e4431f4b-463e-7b5a-9933-223c364a0397.htm" target="">ReadUInt32</a></td><td><div class="summary">
Reads a 32-bit unsigned integer from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="0e7a8462-0d75-3d0c-7203-579f46b9765a.htm" target="">ReadUInt64</a></td><td><div class="summary">
Reads a 64-bit unsigned integer from the current reader.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="74d1e42c-3b08-ea09-0b8b-c841914deab0.htm" target="">ToString</a></td><td><div class="summary">
Returns a string that represents this DryadLinqBinaryReader object.
</div> (Overrides <a href="http://msdn2.microsoft.com/en-us/library/7bxwbwt2" target="_blank">Object<span id="ID0ECBAABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBAABCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>ToString<span id="ID0EABAABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EABAABCAAAAA?vb=|cpp=()|cs=()|fs=()|nu=()");
</script></a>.)</td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="e2f6b120-72cd-d97c-d0c9-9ab1b4abb5b5.htm" target="">DryadLinqBinaryReader Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqBinaryReader+Methods+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,52 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.AssumeHashPartition Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="AssumeHashPartition method" /><meta name="System.Keywords" content="DryadLinqQueryable.AssumeHashPartition method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqQueryable.AssumeHashPartition" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqQueryable.AssumeHashPartition``2" /><meta name="Microsoft.Help.Id" content="Overload:Microsoft.Research.DryadLinq.DryadLinqQueryable.AssumeHashPartition" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="0fe358e3-5219-60c4-1a15-c77bd51338f7" /><meta name="guid" content="0fe358e3-5219-60c4-1a15-c77bd51338f7" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>AssumeHashPartition Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Overload List</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="716d5b8d-5259-d16d-b992-b3fa53e3c9d1.htm" target="">AssumeHashPartition<span id="ID0EOABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EMABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0EKABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0EIABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EGABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EEABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEABBBCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0ECABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBABBBCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABBBCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a></td><td><div class="summary">
Instruct DryadLINQ to assume that the dataset is hash partitioned.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="788057c6-6e61-982a-d575-543e2522121e.htm" target="">AssumeHashPartition<span id="ID0ESABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ESABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EQABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EQABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0EOABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0EMABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EKABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EIABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, TKey<span id="ID0EGABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EFABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, IEqualityComparer<span id="ID0EDABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABABCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TKey<span id="ID0EBABABCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABABCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a></td><td><div class="summary">
Instructs DryadLINQ to assume that the dataset is hash partitioned.
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.AssumeHashPartition+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,74 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.AverageAsQuery Method (IQueryable(Nullable(Decimal)))</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqQueryable.AverageAsQuery(System.Linq.IQueryable{System.Nullable{System.Decimal}})" /><meta name="Description" content="Same as , but returns an &lt;&lt;&gt;&gt; containing a single element. Computes the average of a set of nullable decimal values in the input dataset." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="10c1f055-1b96-8c5a-c46d-b6171ae2f107" /><meta name="guid" content="10c1f055-1b96-8c5a-c46d-b6171ae2f107" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0EIBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>AverageAsQuery Method (IQueryable<span id="ID0EGBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Nullable<span id="ID0EEBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Decimal<span id="ID0ECBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Same as <a href="http://msdn2.microsoft.com/en-us/library/bb345308" target="_blank">Average(IQueryable<span id="ID0EGHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGHMAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Nullable<span id="ID0EEHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEHMAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Decimal<span id="ID0ECHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECHMAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBHMAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a>, but returns an <a href="http://msdn2.microsoft.com/en-us/library/bb495796" target="_blank">IQueryable</a>&lt;<a href="http://msdn2.microsoft.com/en-us/library/fs5xdbk8" target="_blank">Nullable</a>&lt;<a href="http://msdn2.microsoft.com/en-us/library/1k2e8atx" target="_blank">Decimal</a>&gt;&gt;
containing a single element. Computes the average of a set of nullable decimal values in the input
dataset.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0EC1CAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0EC1CAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0EC1CAAAAA_tabimgleft"></div><div id="ID0EC1CAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0EC1CAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0EC1CAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0EC1CAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0EC1CAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0EC1CAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0EC1CAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0EC1CAAAAA_tabimgright"></div></div><div id="ID0EC1CAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0EC1CAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0EC1CAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0EC1CAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0EC1CAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0EC1CAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0EC1CAAAAA','4')" title="Print">Print</a></div></div><div id="ID0EC1CAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">Nullable</span>&lt;<span class="identifier">decimal</span>&gt;&gt; <span class="identifier">AverageAsQuery</span>(
<span class="keyword">this</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">Nullable</span>&lt;<span class="identifier">decimal</span>&gt;&gt; <span class="parameter">source</span>
)</pre></div><div id="ID0EC1CAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static IQueryable&lt;Nullable&lt;decimal&gt;&gt; AverageAsQuery(
this IQueryable&lt;Nullable&lt;decimal&gt;&gt; source
)</pre></div><div id="ID0EC1CAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">ExtensionAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">AverageAsQuery</span> (
<span class="parameter">source</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> <span class="identifier">Nullable</span>(<span class="keyword">Of</span> <span class="identifier">Decimal</span>))
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> <span class="identifier">Nullable</span>(<span class="keyword">Of</span> <span class="identifier">Decimal</span>))</pre></div><div id="ID0EC1CAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;ExtensionAttribute&gt;
Public Shared Function AverageAsQuery (
source As IQueryable(Of Nullable(Of Decimal))
) As IQueryable(Of Nullable(Of Decimal))</pre></div><div id="ID0EC1CAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
[<span class="identifier">ExtensionAttribute</span>]
<span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">Nullable</span>&lt;<span class="identifier">Decimal</span>&gt;&gt;^ <span class="identifier">AverageAsQuery</span>(
<span class="identifier">IQueryable</span>&lt;<span class="identifier">Nullable</span>&lt;<span class="identifier">Decimal</span>&gt;&gt;^ <span class="parameter">source</span>
)</pre></div><div id="ID0EC1CAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
[ExtensionAttribute]
static IQueryable&lt;Nullable&lt;Decimal&gt;&gt;^ AverageAsQuery(
IQueryable&lt;Nullable&lt;Decimal&gt;&gt;^ source
)</pre></div><div id="ID0EC1CAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0EC1CAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0EC1CAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="source"><dt><span class="parameter">source</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBIAAZCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBIAAZCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EHAAZCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHAAZCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/b3h38hb0" target="_blank">Nullable</a><span id="ID0EFAAZCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFAAZCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/1k2e8atx" target="_blank">Decimal</a><span id="ID0EDAAZCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDAAZCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECAAZCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECAAZCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>A set of nullable decimal values to calculate the average of</span></dd></dl></div><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EVCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EVCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/b3h38hb0" target="_blank">Nullable</a><span id="ID0ETCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ETCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/1k2e8atx" target="_blank">Decimal</a><span id="ID0ERCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EQCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EQCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The average of the values in the input dataset<h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EKCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/b3h38hb0" target="_blank">Nullable</a><span id="ID0EICAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EICAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/1k2e8atx" target="_blank">Decimal</a><span id="ID0EGCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="http://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank">Extension Methods (Visual Basic)</a> or <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" target="_blank">Extension Methods (C# Programming Guide)</a>.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="1b4e9327-9b61-e353-0051-d36bb399ce3e.htm" target="">AverageAsQuery Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.AverageAsQuery+Method+(IQueryable(Nullable(Decimal)))+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,45 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Class</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="GenericDecomposable%3CTDecomposable%2C TSource%2C TAccumulate%2C TResult%3E class" /><meta name="System.Keywords" content="Microsoft.Research.DryadLinq.GenericDecomposable%3CTDecomposable%2C TSource%2C TAccumulate%2C TResult%3E class" /><meta name="System.Keywords" content="GenericDecomposable%3CTDecomposable%2C TSource%2C TAccumulate%2C TResult%3E class, about GenericDecomposable%3CTDecomposable%2C TSource%2C TAccumulate%2C TResult%3E class" /><meta name="System.Keywords" content="GenericDecomposable(Of TDecomposable%2C TSource%2C TAccumulate%2C TResult) class" /><meta name="System.Keywords" content="Microsoft.Research.DryadLinq.GenericDecomposable(Of TDecomposable%2C TSource%2C TAccumulate%2C TResult) class" /><meta name="System.Keywords" content="GenericDecomposable(Of TDecomposable%2C TSource%2C TAccumulate%2C TResult) class, about GenericDecomposable(Of TDecomposable%2C TSource%2C TAccumulate%2C TResult) class" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.GenericDecomposable`4" /><meta name="Microsoft.Help.Id" content="T:Microsoft.Research.DryadLinq.GenericDecomposable`4" /><meta name="Description" content="A helper class for calling IDecomposable methods more efficiently. It is used in auto-generated vertex code. A DryadLINQ user should not need to use this class directly." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="11c77de4-bb21-4879-6a37-daaf58adb3cf" /><meta name="guid" content="11c77de4-bb21-4879-6a37-daaf58adb3cf" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">GenericDecomposable<span id="ID0EJBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TDecomposable</span>, <span class="typeparameter">TSource</span>, <span class="typeparameter">TAccumulate</span>, <span class="typeparameter">TResult</span><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Class</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
A helper class for calling IDecomposable methods more efficiently. It is used in
auto-generated vertex code. A DryadLINQ user should not need to use this class directly.
</div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Inheritance Hierarchy</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">System<span id="ID0EBEOAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBEOAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Object</a><br />  <span class="selflink">Microsoft.Research.DryadLinq<span id="ID0EEBOAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEBOAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>GenericDecomposable<span id="ID0ECBOAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBOAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TDecomposable, TSource, TAccumulate, TResult<span id="ID0EABOAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EABOAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script></span><br /><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBEAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBEAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBEAAAAA_tabimgleft"></div><div id="ID0ECBEAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBEAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBEAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBEAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBEAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBEAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBEAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBEAAAAA_tabimgright"></div></div><div id="ID0ECBEAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBEAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBEAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBEAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBEAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBEAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBEAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBEAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">class</span> <span class="identifier">GenericDecomposable</span>&lt;TDecomposable, TSource, TAccumulate, TResult&gt;
<span class="keyword">where</span> TDecomposable : <span class="keyword">new</span>(), <span class="identifier">Object</span>, <span class="identifier">IDecomposable</span>&lt;TSource, TAccumulate, TResult&gt;</pre></div><div id="ID0ECBEAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static class GenericDecomposable&lt;TDecomposable, TSource, TAccumulate, TResult&gt;
where TDecomposable : new(), Object, IDecomposable&lt;TSource, TAccumulate, TResult&gt;</pre></div><div id="ID0ECBEAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">NotInheritable</span> <span class="keyword">Class</span> <span class="identifier">GenericDecomposable</span>(<span class="keyword">Of</span> TDecomposable <span class="keyword">As</span> {<span class="keyword">New</span>, <span class="identifier">Object</span>, <span class="identifier">IDecomposable</span>(<span class="keyword">Of</span> TSource, TAccumulate, TResult)}, TSource, TAccumulate, TResult)</pre></div><div id="ID0ECBEAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public NotInheritable Class GenericDecomposable(Of TDecomposable As {New, Object, IDecomposable(Of TSource, TAccumulate, TResult)}, TSource, TAccumulate, TResult)</pre></div><div id="ID0ECBEAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">generic</span>&lt;<span class="keyword">typename</span> TDecomposable, <span class="keyword">typename</span> TSource, <span class="keyword">typename</span> TAccumulate, <span class="keyword">typename</span> TResult&gt;
<span class="keyword">where</span> TDecomposable : <span class="keyword">gcnew</span>(), <span class="identifier">Object</span>, <span class="identifier">IDecomposable</span>&lt;TSource, TAccumulate, TResult&gt;
<span class="keyword">public</span> <span class="keyword">ref class</span> <span class="identifier">GenericDecomposable</span> <span class="keyword">abstract</span> <span class="keyword">sealed</span></pre></div><div id="ID0ECBEAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>generic&lt;typename TDecomposable, typename TSource, typename TAccumulate, typename TResult&gt;
where TDecomposable : gcnew(), Object, IDecomposable&lt;TSource, TAccumulate, TResult&gt;
public ref class GenericDecomposable abstract sealed</pre></div><div id="ID0ECBEAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBEAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBEAAAAA');</script></div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Type Parameters</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><dl><dt><span class="parameter">TDecomposable</span></dt><dd>The type that implements the IDecomposable interface</dd><dt><span class="parameter">TSource</span></dt><dd>The element type of the input sequence</dd><dt><span class="parameter">TAccumulate</span></dt><dd>The element type of an intermediate result</dd><dt><span class="parameter">TResult</span></dt><dd>The element type of the final result</dd></dl><p>The <span class="selflink">GenericDecomposable<span id="ID0ECBDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBDAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TDecomposable, TSource, TAccumulate, TResult<span id="ID0EABDAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EABDAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script></span> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="ffa4b6ac-5e03-29aa-ec10-7aab8893edd2.htm" target="">Accumulate</a></td><td><div class="summary">
Accumulates an input element into the accumulator value.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="982d658a-3590-02e2-e86c-5d1603e2ff7b.htm" target="">FinalReduce</a></td><td><div class="summary">
Produces the final value from an accumulator value.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="7ad863dd-2b05-4189-31b3-b8e3fe344c31.htm" target="">Initialize</a></td><td><div class="summary">
Initializes the initial state of the IDecomposable object.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="032e436e-efdc-433f-654c-75ce93cdb5d2.htm" target="">RecursiveAccumulate</a></td><td><div class="summary">
Combines two accumulator values into one.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="3f7c6b9f-b02f-4152-9d67-ce663a9710f7.htm" target="">Seed</a></td><td><div class="summary">
Converts an input element to an intermediate accumulator value.
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+GenericDecomposable(TDecomposable%2c+TSource%2c+TAccumulate%2c+TResult)+Class+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,26 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqJobInfo Class</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="DryadLinqJobInfo class" /><meta name="System.Keywords" content="Microsoft.Research.DryadLinq.DryadLinqJobInfo class" /><meta name="System.Keywords" content="DryadLinqJobInfo class, about DryadLinqJobInfo class" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqJobInfo" /><meta name="Microsoft.Help.Id" content="T:Microsoft.Research.DryadLinq.DryadLinqJobInfo" /><meta name="Description" content="Represents the current state of a set of DryadLINQ jobs that have already been submitted for execution. A DryadLinqJobInfo object is returned after a job is submitted for execution." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1286706e-b13a-d4da-31b6-a8e9095728c7" /><meta name="guid" content="1286706e-b13a-d4da-31b6-a8e9095728c7" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqJobInfo Class</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Represents the current state of a set of DryadLINQ jobs that have already been
submitted for execution. A DryadLinqJobInfo object is returned after a job is
submitted for execution.
</div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Inheritance Hierarchy</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">System<span id="ID0EBEPAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBEPAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Object</a><br />  <span class="selflink">Microsoft.Research.DryadLinq<span id="ID0EBBPAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBPAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>DryadLinqJobInfo</span><br /><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECAFAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECAFAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECAFAAAAA_tabimgleft"></div><div id="ID0ECAFAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAFAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECAFAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAFAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECAFAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAFAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECAFAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECAFAAAAA_tabimgright"></div></div><div id="ID0ECAFAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECAFAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECAFAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECAFAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECAFAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECAFAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECAFAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECAFAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">sealed</span> <span class="keyword">class</span> <span class="identifier">DryadLinqJobInfo</span></pre></div><div id="ID0ECAFAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public sealed class DryadLinqJobInfo</pre></div><div id="ID0ECAFAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">NotInheritable</span> <span class="keyword">Class</span> <span class="identifier">DryadLinqJobInfo</span></pre></div><div id="ID0ECAFAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public NotInheritable Class DryadLinqJobInfo</pre></div><div id="ID0ECAFAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span> <span class="keyword">ref class</span> <span class="identifier">DryadLinqJobInfo</span> <span class="keyword">sealed</span></pre></div><div id="ID0ECAFAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public ref class DryadLinqJobInfo sealed</pre></div><div id="ID0ECAFAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECAFAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECAFAAAAA');</script></div><p>The <span class="selflink">DryadLinqJobInfo</span> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="da218c9d-8317-6573-83b6-ac6c2264c47e.htm" target="">CancelJob</a></td><td><div class="summary">
Cancels all the unfinished jobs.
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/bsc2ak47" target="_blank">Equals</a></td><td><div class="summary">Determines whether the specified <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a> is equal to the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/zdee4b3y" target="_blank">GetHashCode</a></td><td><div class="summary">Serves as a hash function for a particular type. </div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/dfwy45w9" target="_blank">GetType</a></td><td><div class="summary">Gets the <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">Type</a> of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/7bxwbwt2" target="_blank">ToString</a></td><td><div class="summary">Returns a string that represents the current object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="7ffb4590-0ee6-b22c-d148-d971fb69f7c8.htm" target="">Wait</a></td><td><div class="summary">
Blocks until all the DryadLINQ jobs terminate.
</div></td></tr></table><a href="#mainBody" target="">Top</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Properties</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="6ead0e05-329b-6672-cf9b-b13587e53520.htm" target="">JobIds</a></td><td><div class="summary">
Gets the job ids of the DryadLINQ jobs.
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqJobInfo+Class+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,66 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.LongTakeWhile(TSource) Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="LongTakeWhile%3CTSource%3E method" /><meta name="System.Keywords" content="LongTakeWhile(Of TSource) method" /><meta name="System.Keywords" content="DryadLinqQueryable.LongTakeWhile%3CTSource%3E method" /><meta name="System.Keywords" content="DryadLinqQueryable.LongTakeWhile(Of TSource) method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqQueryable.LongTakeWhile``1" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqQueryable.LongTakeWhile``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Int64,System.Boolean}})" /><meta name="Description" content="Returns the largest prefix of a sequence such that the elements satisfy a specified predicate." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1361c8c8-c04b-e5f2-6112-9f62b5af8fcb" /><meta name="guid" content="1361c8c8-c04b-e5f2-6112-9f62b5af8fcb" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0EFBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>LongTakeWhile<span id="ID0EDBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Returns the largest prefix of a sequence such that the elements satisfy a specified predicate.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECVCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECVCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECVCAAAAA_tabimgleft"></div><div id="ID0ECVCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECVCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECVCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECVCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECVCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECVCAAAAA_tabimgright"></div></div><div id="ID0ECVCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECVCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECVCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECVCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECVCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECVCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECVCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECVCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;TSource&gt; <span class="identifier">LongTakeWhile</span>&lt;TSource&gt;(
<span class="keyword">this</span> <span class="identifier">IQueryable</span>&lt;TSource&gt; <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, <span class="identifier">long</span>, <span class="identifier">bool</span>&gt;&gt; <span class="parameter">predicate</span>
)</pre></div><div id="ID0ECVCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static IQueryable&lt;TSource&gt; LongTakeWhile&lt;TSource&gt;(
this IQueryable&lt;TSource&gt; source,
Expression&lt;Func&lt;TSource, long, bool&gt;&gt; predicate
)</pre></div><div id="ID0ECVCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">ExtensionAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">LongTakeWhile</span>(<span class="keyword">Of</span> TSource) (
<span class="parameter">source</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> TSource),
<span class="parameter">predicate</span> <span class="keyword">As</span> <span class="identifier">Expression</span>(<span class="keyword">Of</span> <span class="identifier">Func</span>(<span class="keyword">Of</span> TSource, <span class="identifier">Long</span>, <span class="identifier">Boolean</span>))
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> TSource)</pre></div><div id="ID0ECVCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;ExtensionAttribute&gt;
Public Shared Function LongTakeWhile(Of TSource) (
source As IQueryable(Of TSource),
predicate As Expression(Of Func(Of TSource, Long, Boolean))
) As IQueryable(Of TSource)</pre></div><div id="ID0ECVCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
[<span class="identifier">ExtensionAttribute</span>]
<span class="keyword">generic</span>&lt;<span class="keyword">typename</span> TSource&gt;
<span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;TSource&gt;^ <span class="identifier">LongTakeWhile</span>(
<span class="identifier">IQueryable</span>&lt;TSource&gt;^ <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, <span class="identifier">long long</span>, <span class="identifier">bool</span>&gt;^&gt;^ <span class="parameter">predicate</span>
)</pre></div><div id="ID0ECVCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
[ExtensionAttribute]
generic&lt;typename TSource&gt;
static IQueryable&lt;TSource&gt;^ LongTakeWhile(
IQueryable&lt;TSource&gt;^ source,
Expression&lt;Func&lt;TSource, long long, bool&gt;^&gt;^ predicate
)</pre></div><div id="ID0ECVCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECVCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECVCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="source"><dt><span class="parameter">source</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBFABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFABUCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EEABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEABUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0ECABUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>The input sequence</span></dd></dl><dl paramName="predicate"><dt><span class="parameter">predicate</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb335710" target="_blank">System.Linq.Expressions<span id="ID0EBMAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBMAAUCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Expression</a><span id="ID0ELAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ELAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/bb534647" target="_blank">Func</a><span id="ID0EJAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJAAUCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span>, <a href="http://msdn2.microsoft.com/en-us/library/6yy583ek" target="_blank">Int64</a>, <a href="http://msdn2.microsoft.com/en-us/library/a28wyd50" target="_blank">Boolean</a><span id="ID0EDAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECAAUCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECAAUCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>A predicate to test each element for a condition</span></dd></dl></div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Type Parameters</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><dl><dt><span class="parameter">TSource</span></dt><dd>The element type of the input sequence</dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EPCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0ENCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The largest prefix satisfying the predicate<h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EHCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0EFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="http://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank">Extension Methods (Visual Basic)</a> or <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" target="_blank">Extension Methods (C# Programming Guide)</a>.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.LongTakeWhile(TSource)+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,15 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqContext.Equals Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Equals method" /><meta name="System.Keywords" content="DryadLinqContext.Equals method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.Equals" /><meta name="Microsoft.Help.Id" content="Overload:Microsoft.Research.DryadLinq.DryadLinqContext.Equals" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="13cce920-2cb3-0614-4d48-34257614f24f" /><meta name="guid" content="13cce920-2cb3-0614-4d48-34257614f24f" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqContext<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Equals Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Overload List</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/bsc2ak47" target="_blank">Equals(Object)</a></td><td><div class="summary">Determines whether the specified <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a> is equal to the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="29860ba9-7870-df8e-9abf-ee6b5441fdcc.htm" target="">Equals(DryadLinqContext)</a></td><td><div class="summary">
Determines whether this instance of DryadLinqContext is equal to another instance
of <a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext</a>.
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqContext.Equals+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,22 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>ForkValue(T).GetHashCode Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="GetHashCode method" /><meta name="System.Keywords" content="ForkValue%3CT%3E.GetHashCode method" /><meta name="System.Keywords" content="ForkValue(Of T).GetHashCode method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.ForkValue`1.GetHashCode" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.ForkValue`1.GetHashCode" /><meta name="Description" content="Gets the hash code of this instance of ForkValue." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1418da77-2d3c-0a21-3c41-ba2ea3abb075" /><meta name="guid" content="1418da77-2d3c-0a21-3c41-ba2ea3abb075" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">ForkValue<span id="ID0EEBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T</span><span id="ID0ECBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>GetHashCode Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Gets the hash code of this instance of ForkValue.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECFCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECFCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECFCAAAAA_tabimgleft"></div><div id="ID0ECFCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECFCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECFCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECFCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECFCAAAAA_tabimgright"></div></div><div id="ID0ECFCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECFCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECFCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECFCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECFCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECFCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECFCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECFCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">override</span> <span class="identifier">int</span> <span class="identifier">GetHashCode</span>()</pre></div><div id="ID0ECFCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public override int GetHashCode()</pre></div><div id="ID0ECFCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Overrides</span> <span class="keyword">Function</span> <span class="identifier">GetHashCode</span> <span class="keyword">As</span> <span class="identifier">Integer</span></pre></div><div id="ID0ECFCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Overrides Function GetHashCode As Integer</pre></div><div id="ID0ECFCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">virtual</span> <span class="identifier">int</span> <span class="identifier">GetHashCode</span>() <span class="keyword">override</span></pre></div><div id="ID0ECFCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
virtual int GetHashCode() override</pre></div><div id="ID0ECFCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECFCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECFCAAAAA');</script></div><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">Int32</a><br />An integer hash code<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="3d9c6034-3028-09ed-9ec6-6af9101c0f52.htm" target="">ForkValue<span id="ID0EDABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABAAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T<span id="ID0EBABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABAAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Structure</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+ForkValue(T).GetHashCode+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,28 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqBinaryWriter.Write Method (String)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqBinaryWriter.Write(System.String)" /><meta name="Description" content="Writes a string to the current writer." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1440c40e-9c6b-fafe-9688-112547bd19f3" /><meta name="guid" content="1440c40e-9c6b-fafe-9688-112547bd19f3" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqBinaryWriter<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Write Method (String)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Writes a string to the current writer.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBCAAAAA_tabimgleft"></div><div id="ID0ECBCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBCAAAAA_tabimgright"></div></div><div id="ID0ECBCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">string</span> <span class="parameter">val</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public void Write(
string val
)</pre></div><div id="ID0ECBCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">Write</span> (
<span class="parameter">val</span> <span class="keyword">As</span> <span class="identifier">String</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Sub Write (
val As String
)</pre></div><div id="ID0ECBCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">String</span>^ <span class="parameter">val</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
void Write(
String^ val
)</pre></div><div id="ID0ECBCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="val"><dt><span class="parameter">val</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/s1wwdcbf" target="_blank">System<span id="ID0EBCAAACAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCAAACAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>String</a><br /><span>The string to write.</span></dd></dl></div><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="46c3c8f6-eac2-96d5-3ff0-d837669e9557.htm" target="">DryadLinqBinaryWriter Class</a></div><div class="seeAlsoStyle"><a href="a520e94d-0d05-1c66-4b54-06b43eac5735.htm" target="">Write Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqBinaryWriter.Write+Method+(String)+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,14 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqBinaryReader.ReadUInt16 Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ReadUInt16 method" /><meta name="System.Keywords" content="DryadLinqBinaryReader.ReadUInt16 method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqBinaryReader.ReadUInt16" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqBinaryReader.ReadUInt16" /><meta name="Description" content="Reads a 16-bit unsigned integer from the current reader." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="14426d10-5679-395b-3954-e340a465128a" /><meta name="guid" content="14426d10-5679-395b-3954-e340a465128a" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqBinaryReader<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>ReadUInt16 Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Reads a 16-bit unsigned integer from the current reader.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECFCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECFCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECFCAAAAA_tabimgleft"></div><div id="ID0ECFCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECFCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECFCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECFCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECFCAAAAA_tabimgright"></div></div><div id="ID0ECFCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECFCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECFCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECFCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECFCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECFCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECFCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECFCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">ushort</span> <span class="identifier">ReadUInt16</span>()</pre></div><div id="ID0ECFCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public ushort ReadUInt16()</pre></div><div id="ID0ECFCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Function</span> <span class="identifier">ReadUInt16</span> <span class="keyword">As</span> <span class="identifier">UShort</span></pre></div><div id="ID0ECFCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Function ReadUInt16 As UShort</pre></div><div id="ID0ECFCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="identifier">unsigned short</span> <span class="identifier">ReadUInt16</span>()</pre></div><div id="ID0ECFCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
unsigned short ReadUInt16()</pre></div><div id="ID0ECFCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECFCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECFCAAAAA');</script></div><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/s6eyk10z" target="_blank">UInt16</a><br />A 16-bit unsigned integer.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="e2f6b120-72cd-d97c-d0c9-9ab1b4abb5b5.htm" target="">DryadLinqBinaryReader Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqBinaryReader.ReadUInt16+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,38 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Pair(T1, T2) Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Pair%3CT1%2C T2%3E structure, constructor" /><meta name="System.Keywords" content="Pair(Of T1%2C T2) structure, constructor" /><meta name="System.Keywords" content="Pair%3CT1%2C T2%3E.Pair constructor" /><meta name="System.Keywords" content="Pair(Of T1%2C T2).Pair constructor" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.Pair`2.#ctor" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.Pair`2.Pair" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.Pair`2.#ctor(`0,`1)" /><meta name="Description" content="Initializes an instance of this key-value Pair structure." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1516e01c-7658-2623-7a8f-ee4df625d7f6" /><meta name="guid" content="1516e01c-7658-2623-7a8f-ee4df625d7f6" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">Pair<span id="ID0EFBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T1</span>, <span class="typeparameter">T2</span><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Constructor </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Initializes an instance of this key-value Pair structure.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBCAAAAA_tabimgleft"></div><div id="ID0ECBCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBCAAAAA_tabimgright"></div></div><div id="ID0ECBCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">Pair</span>(
T1 <span class="parameter">x</span>,
T2 <span class="parameter">y</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public Pair(
T1 x,
T2 y
)</pre></div><div id="ID0ECBCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span> (
<span class="parameter">x</span> <span class="keyword">As</span> T1,
<span class="parameter">y</span> <span class="keyword">As</span> T2
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Sub New (
x As T1,
y As T2
)</pre></div><div id="ID0ECBCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="identifier">Pair</span>(
T1 <span class="parameter">x</span>,
T2 <span class="parameter">y</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
Pair(
T1 x,
T2 y
)</pre></div><div id="ID0ECBCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="x"><dt><span class="parameter">x</span></dt><dd>Type: <a href="4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm" target=""><span class="typeparam">T1</span></a><br /><span>The key of the pair.</span></dd></dl><dl paramName="y"><dt><span class="parameter">y</span></dt><dd>Type: <a href="4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm" target=""><span class="typeparam">T2</span></a><br /><span>The value of the pair.</span></dd></dl></div><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="4937c0d0-14bc-0943-1166-e434ec5c8dfd.htm" target="">Pair<span id="ID0EDABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABAAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T1, T2<span id="ID0EBABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABAAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Structure</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+Pair(T1%2c+T2)+Constructor++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,14 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqBinaryReader.ReadInt32 Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ReadInt32 method" /><meta name="System.Keywords" content="DryadLinqBinaryReader.ReadInt32 method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqBinaryReader.ReadInt32" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqBinaryReader.ReadInt32" /><meta name="Description" content="Reads a 32-bit signed integer from the current reader." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="154a0be2-f541-8bea-52fc-3e187bd8e65f" /><meta name="guid" content="154a0be2-f541-8bea-52fc-3e187bd8e65f" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqBinaryReader<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>ReadInt32 Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Reads a 32-bit signed integer from the current reader.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECFCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECFCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECFCAAAAA_tabimgleft"></div><div id="ID0ECFCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECFCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECFCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECFCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECFCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECFCAAAAA_tabimgright"></div></div><div id="ID0ECFCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECFCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECFCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECFCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECFCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECFCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECFCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECFCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">int</span> <span class="identifier">ReadInt32</span>()</pre></div><div id="ID0ECFCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public int ReadInt32()</pre></div><div id="ID0ECFCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Function</span> <span class="identifier">ReadInt32</span> <span class="keyword">As</span> <span class="identifier">Integer</span></pre></div><div id="ID0ECFCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Function ReadInt32 As Integer</pre></div><div id="ID0ECFCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="identifier">int</span> <span class="identifier">ReadInt32</span>()</pre></div><div id="ID0ECFCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
int ReadInt32()</pre></div><div id="ID0ECFCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECFCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECFCAAAAA');</script></div><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">Int32</a><br />A 32-bit signed integer.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="e2f6b120-72cd-d97c-d0c9-9ab1b4abb5b5.htm" target="">DryadLinqBinaryReader Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqBinaryReader.ReadInt32+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,10 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>NullableAttribute Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="NullableAttribute class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Microsoft.Research.DryadLinq.NullableAttribute" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1576a427-e89d-6a22-37c1-96d064b3065a" /><meta name="guid" content="1576a427-e89d-6a22-37c1-96d064b3065a" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">NullableAttribute Methods</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><p>The <a href="d38002f5-8220-c873-ca1b-5c99e45e5007.htm" target="">NullableAttribute</a> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/09ds241w" target="_blank">Equals</a></td><td><div class="summary">Returns a value that indicates whether this instance is equal to a specified object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/365e1bxs" target="_blank">GetHashCode</a></td><td><div class="summary">Returns the hash code for this instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/dfwy45w9" target="_blank">GetType</a></td><td><div class="summary">Gets the <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">Type</a> of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/tbkb5x6t" target="_blank">IsDefaultAttribute</a></td><td><div class="summary">When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/wy7chz44" target="_blank">Match</a></td><td><div class="summary">When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/7bxwbwt2" target="_blank">ToString</a></td><td><div class="summary">Returns a string that represents the current object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="d38002f5-8220-c873-ca1b-5c99e45e5007.htm" target="">NullableAttribute Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+NullableAttribute+Methods+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,28 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqBinaryWriter.Write Method (UInt16)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqBinaryWriter.Write(System.UInt16)" /><meta name="Description" content="Writes an unsigned 16-bit integer to the current writer." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="15ad8a07-5fcb-f3d7-1bb6-efd8cc647046" /><meta name="guid" content="15ad8a07-5fcb-f3d7-1bb6-efd8cc647046" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqBinaryWriter<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Write Method (UInt16)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Writes an unsigned 16-bit integer to the current writer.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBCAAAAA_tabimgleft"></div><div id="ID0ECBCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBCAAAAA_tabimgright"></div></div><div id="ID0ECBCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">ushort</span> <span class="parameter">val</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public void Write(
ushort val
)</pre></div><div id="ID0ECBCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">Write</span> (
<span class="parameter">val</span> <span class="keyword">As</span> <span class="identifier">UShort</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Sub Write (
val As UShort
)</pre></div><div id="ID0ECBCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">unsigned short</span> <span class="parameter">val</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
void Write(
unsigned short val
)</pre></div><div id="ID0ECBCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="val"><dt><span class="parameter">val</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/s6eyk10z" target="_blank">System<span id="ID0EBCAAACAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCAAACAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>UInt16</a><br /><span>The unsigned 16-bit integer to be written.</span></dd></dl></div><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="46c3c8f6-eac2-96d5-3ff0-d837669e9557.htm" target="">DryadLinqBinaryWriter Class</a></div><div class="seeAlsoStyle"><a href="a520e94d-0d05-1c66-4b54-06b43eac5735.htm" target="">Write Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqBinaryWriter.Write+Method+(UInt16)+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,38 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>IKeyedMultiQueryable(T, K).Item Property </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Item property" /><meta name="System.Keywords" content="IKeyedMultiQueryable%3CT%2C K%3E.Item property" /><meta name="System.Keywords" content="IKeyedMultiQueryable(Of T%2C K).Item property" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.IKeyedMultiQueryable`2.Item" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.IKeyedMultiQueryable`2.get_Item" /><meta name="Microsoft.Help.Id" content="P:Microsoft.Research.DryadLinq.IKeyedMultiQueryable`2.Item(`1)" /><meta name="Description" content="Gets the IQueryable{T} associated with a specified key." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="15c1c542-c2b5-4b49-86c9-d939b43ae22e" /><meta name="guid" content="15c1c542-c2b5-4b49-86c9-d939b43ae22e" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">IKeyedMultiQueryable<span id="ID0EGBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">T</span>, <span class="typeparameter">K</span><span id="ID0ECBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Item Property </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Gets the IQueryable{T} associated with a specified key.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECJCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECJCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECJCAAAAA_tabimgleft"></div><div id="ID0ECJCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECJCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECJCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECJCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECJCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECJCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECJCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECJCAAAAA_tabimgright"></div></div><div id="ID0ECJCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECJCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECJCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECJCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECJCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECJCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECJCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECJCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="identifier">IQueryable</span>&lt;T&gt; <span class="keyword">this</span>[
K <span class="parameter">key</span>
] { <span class="keyword">get</span>; }</pre></div><div id="ID0ECJCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>IQueryable&lt;T&gt; this[
K key
] { get; }</pre></div><div id="ID0ECJCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">ReadOnly</span> <span class="keyword">Default</span> <span class="keyword">Property</span> <span class="identifier">Item</span> (
<span class="parameter">key</span> <span class="keyword">As</span> K
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> T)
<span class="keyword">Get</span></pre></div><div id="ID0ECJCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>ReadOnly Default Property Item (
key As K
) As IQueryable(Of T)
Get</pre></div><div id="ID0ECJCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">property</span> <span class="identifier">IQueryable</span>&lt;T&gt;^ <span class="keyword">default</span>[K <span class="parameter">key</span>] {
<span class="identifier">IQueryable</span>&lt;T&gt;^ <span class="keyword">get</span> (K <span class="parameter">key</span>);
}</pre></div><div id="ID0ECJCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>property IQueryable&lt;T&gt;^ default[K key] {
IQueryable&lt;T&gt;^ get (K key);
}</pre></div><div id="ID0ECJCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECJCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECJCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="key"><dt><span class="parameter">key</span></dt><dd>Type: <a href="721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm" target=""><span class="typeparam">K</span></a><br /><span>A key</span></dd></dl></div><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EECAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EECAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm" target=""><span class="typeparam">T</span></a><span id="ID0ECCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The IQueryable{T} associated with the key<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="721bf2e3-dc55-bf0a-0873-d5a6b711d57a.htm" target="">IKeyedMultiQueryable<span id="ID0EDABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDABAAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>T, K<span id="ID0EBABAAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBABAAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Interface</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+IKeyedMultiQueryable(T%2c+K).Item+Property++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,10 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DecomposableAttribute Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="DecomposableAttribute class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Microsoft.Research.DryadLinq.DecomposableAttribute" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1634cb40-8440-9f89-4255-84fa32a3ba65" /><meta name="guid" content="1634cb40-8440-9f89-4255-84fa32a3ba65" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DecomposableAttribute Methods</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><p>The <a href="49fcc552-44b3-1cd7-9e8d-0182923c9af4.htm" target="">DecomposableAttribute</a> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/09ds241w" target="_blank">Equals</a></td><td><div class="summary">Returns a value that indicates whether this instance is equal to a specified object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/365e1bxs" target="_blank">GetHashCode</a></td><td><div class="summary">Returns the hash code for this instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/dfwy45w9" target="_blank">GetType</a></td><td><div class="summary">Gets the <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">Type</a> of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/tbkb5x6t" target="_blank">IsDefaultAttribute</a></td><td><div class="summary">When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/wy7chz44" target="_blank">Match</a></td><td><div class="summary">When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/7bxwbwt2" target="_blank">ToString</a></td><td><div class="summary">Returns a string that represents the current object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="49fcc552-44b3-1cd7-9e8d-0182923c9af4.htm" target="">DecomposableAttribute Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DecomposableAttribute+Methods+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,18 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>LineRecord Operators</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="LineRecord structure, operators" /><meta name="Microsoft.Help.Id" content="Operators.T:Microsoft.Research.DryadLinq.LineRecord" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="16daaf7e-3114-85a5-746f-9b39bda27cb9" /><meta name="guid" content="16daaf7e-3114-85a5-746f-9b39bda27cb9" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">LineRecord Operators</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><p>The <a href="b077f955-9bc6-1e0b-e710-00cc784bccf1.htm" target="">LineRecord</a> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Operators</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/puboperator.gif" alt="Public operator" title="Public operator" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="85b0619b-7cb3-8abb-41a0-e721890b4b4b.htm" target="">Equality</a></td><td><div class="summary">
Determines whether two specified LineRecords are equal.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/puboperator.gif" alt="Public operator" title="Public operator" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="ed798443-81e0-6dcd-be4f-27eb558511a4.htm" target="">GreaterThan</a></td><td><div class="summary">
Returns true iff a LineRecord is greater than another LineRecord.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/puboperator.gif" alt="Public operator" title="Public operator" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="417d2a6e-1f42-50c2-9fc9-25877bf4f0c5.htm" target="">Inequality</a></td><td><div class="summary">
Determines whether two specified LineRecords are not equal.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="./../icons/puboperator.gif" alt="Public operator" title="Public operator" /><img src="./../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="52db89c1-d554-4ea0-8823-03e81b8bcf68.htm" target="">LessThan</a></td><td><div class="summary">
Returns true iff a LineRecord is less than another LineRecord.
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="b077f955-9bc6-1e0b-e710-00cc784bccf1.htm" target="">LineRecord Structure</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+LineRecord+Operators+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,36 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqContext.RegisterAzureAccount Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="RegisterAzureAccount method" /><meta name="System.Keywords" content="DryadLinqContext.RegisterAzureAccount method" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.RegisterAzureAccount" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqContext.RegisterAzureAccount(System.String,System.String)" /><meta name="Description" content="Register a named account with the specified storage key, so that key won't need to be specified in Azure blob URIs" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="17d622f1-6799-aeab-3637-9d66a4d79f0b" /><meta name="guid" content="17d622f1-6799-aeab-3637-9d66a4d79f0b" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqContext<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>RegisterAzureAccount Method </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Register a named account with the specified storage key, so that key won't need to be specified in Azure blob URIs
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBCAAAAA_tabimgleft"></div><div id="ID0ECBCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBCAAAAA_tabimgright"></div></div><div id="ID0ECBCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">RegisterAzureAccount</span>(
<span class="identifier">string</span> <span class="parameter">storageAccountName</span>,
<span class="identifier">string</span> <span class="parameter">storageAccountKey</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public void RegisterAzureAccount(
string storageAccountName,
string storageAccountKey
)</pre></div><div id="ID0ECBCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">RegisterAzureAccount</span> (
<span class="parameter">storageAccountName</span> <span class="keyword">As</span> <span class="identifier">String</span>,
<span class="parameter">storageAccountKey</span> <span class="keyword">As</span> <span class="identifier">String</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Sub RegisterAzureAccount (
storageAccountName As String,
storageAccountKey As String
)</pre></div><div id="ID0ECBCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">void</span> <span class="identifier">RegisterAzureAccount</span>(
<span class="identifier">String</span>^ <span class="parameter">storageAccountName</span>,
<span class="identifier">String</span>^ <span class="parameter">storageAccountKey</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
void RegisterAzureAccount(
String^ storageAccountName,
String^ storageAccountKey
)</pre></div><div id="ID0ECBCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="storageAccountName"><dt><span class="parameter">storageAccountName</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/s1wwdcbf" target="_blank">System<span id="ID0EBCABACAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCABACAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>String</a><br /><span>The name of the storage account</span></dd></dl><dl paramName="storageAccountKey"><dt><span class="parameter">storageAccountKey</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/s1wwdcbf" target="_blank">System<span id="ID0EBCAAACAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCAAACAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>String</a><br /><span>The account's key</span></dd></dl></div><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqContext.RegisterAzureAccount+Method++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,26 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqContext.SelectOrderPreserving Property </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="SelectOrderPreserving property" /><meta name="System.Keywords" content="DryadLinqContext.SelectOrderPreserving property" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.SelectOrderPreserving" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.get_SelectOrderPreserving" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.set_SelectOrderPreserving" /><meta name="Microsoft.Help.Id" content="P:Microsoft.Research.DryadLinq.DryadLinqContext.SelectOrderPreserving" /><meta name="Description" content="Gets or sets whether certain operators will preserve item ordering. When true, the Select, SelectMany and Where operators will preserve item ordering; otherwise, they may shuffle the input items as they are processed." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="17d9d840-e581-26d0-9aaf-16ca5687adda" /><meta name="guid" content="17d9d840-e581-26d0-9aaf-16ca5687adda" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqContext<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>SelectOrderPreserving Property </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Gets or sets whether certain operators will preserve item ordering.
When true, the Select, SelectMany and Where operators will preserve item ordering;
otherwise, they may shuffle the input items as they are processed.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECDCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECDCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECDCAAAAA_tabimgleft"></div><div id="ID0ECDCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECDCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECDCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECDCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECDCAAAAA_tabimgright"></div></div><div id="ID0ECDCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECDCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECDCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECDCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECDCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECDCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECDCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECDCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">bool</span> <span class="identifier">SelectOrderPreserving</span> { <span class="keyword">get</span>; <span class="keyword">set</span>; }</pre></div><div id="ID0ECDCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public bool SelectOrderPreserving { get; set; }</pre></div><div id="ID0ECDCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Property</span> <span class="identifier">SelectOrderPreserving</span> <span class="keyword">As</span> <span class="identifier">Boolean</span> 
<span class="keyword">Get</span> 
<span class="keyword">Set</span></pre></div><div id="ID0ECDCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Property SelectOrderPreserving As Boolean 
Get 
Set</pre></div><div id="ID0ECDCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">property</span> <span class="identifier">bool</span> <span class="identifier">SelectOrderPreserving</span> {
<span class="identifier">bool</span> <span class="keyword">get</span> ();
<span class="keyword">void</span> <span class="keyword">set</span> (<span class="identifier">bool</span> <span class="parameter">value</span>);
}</pre></div><div id="ID0ECDCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
property bool SelectOrderPreserving {
bool get ();
void set (bool value);
}</pre></div><div id="ID0ECDCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECDCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECDCAAAAA');</script></div><h4 class="subHeading">Property Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/a28wyd50" target="_blank">Boolean</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqContext.SelectOrderPreserving+Property++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,28 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>CustomDryadLinqSerializerAttribute Class</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="CustomDryadLinqSerializerAttribute class" /><meta name="System.Keywords" content="Microsoft.Research.DryadLinq.CustomDryadLinqSerializerAttribute class" /><meta name="System.Keywords" content="CustomDryadLinqSerializerAttribute class, about CustomDryadLinqSerializerAttribute class" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.CustomDryadLinqSerializerAttribute" /><meta name="Microsoft.Help.Id" content="T:Microsoft.Research.DryadLinq.CustomDryadLinqSerializerAttribute" /><meta name="Description" content="Provides a user-defined serialization method for a .NET type." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1842f60d-35dc-a934-cc36-dfa0cba934e1" /><meta name="guid" content="1842f60d-35dc-a934-cc36-dfa0cba934e1" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">CustomDryadLinqSerializerAttribute Class</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Provides a user-defined serialization method for a .NET type.
</div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Inheritance Hierarchy</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">System<span id="ID0EBHQAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBHQAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Object</a><br />  <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">System<span id="ID0EBEQAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBEQAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Attribute</a><br />    <span class="selflink">Microsoft.Research.DryadLinq<span id="ID0EBBQAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBQAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>CustomDryadLinqSerializerAttribute</span><br /><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECAGAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECAGAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECAGAAAAA_tabimgleft"></div><div id="ID0ECAGAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAGAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECAGAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAGAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECAGAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAGAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECAGAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECAGAAAAA_tabimgright"></div></div><div id="ID0ECAGAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECAGAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECAGAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECAGAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECAGAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECAGAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECAGAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECAGAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">sealed</span> <span class="keyword">class</span> <span class="identifier">CustomDryadLinqSerializerAttribute</span> : <span class="identifier">Attribute</span></pre></div><div id="ID0ECAGAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public sealed class CustomDryadLinqSerializerAttribute : Attribute</pre></div><div id="ID0ECAGAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">NotInheritable</span> <span class="keyword">Class</span> <span class="identifier">CustomDryadLinqSerializerAttribute</span> 
<span class="keyword">Inherits</span> <span class="identifier">Attribute</span></pre></div><div id="ID0ECAGAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public NotInheritable Class CustomDryadLinqSerializerAttribute 
Inherits Attribute</pre></div><div id="ID0ECAGAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span> <span class="keyword">ref class</span> <span class="identifier">CustomDryadLinqSerializerAttribute</span> <span class="keyword">sealed</span> : <span class="keyword">public</span> <span class="identifier">Attribute</span></pre></div><div id="ID0ECAGAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public ref class CustomDryadLinqSerializerAttribute sealed : public Attribute</pre></div><div id="ID0ECAGAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECAGAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECAGAAAAA');</script></div><p>The <span class="selflink">CustomDryadLinqSerializerAttribute</span> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Constructors</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="188cfe0e-30ad-5808-ecf3-69159ca7250f.htm" target="">CustomDryadLinqSerializerAttribute</a></td><td><div class="summary">
Initializes an instance of CustomDryadLinqSerializer attribute.
</div></td></tr></table><a href="#mainBody" target="">Top</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/09ds241w" target="_blank">Equals</a></td><td><div class="summary">Returns a value that indicates whether this instance is equal to a specified object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/365e1bxs" target="_blank">GetHashCode</a></td><td><div class="summary">Returns the hash code for this instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/dfwy45w9" target="_blank">GetType</a></td><td><div class="summary">Gets the <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">Type</a> of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/tbkb5x6t" target="_blank">IsDefaultAttribute</a></td><td><div class="summary">When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/wy7chz44" target="_blank">Match</a></td><td><div class="summary">When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/7bxwbwt2" target="_blank">ToString</a></td><td><div class="summary">Returns a string that represents the current object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr></table><a href="#mainBody" target="">Top</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Properties</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="5a4ebe0b-dfae-da42-1c4f-3face32fbe00.htm" target="">SerializerType</a></td><td><div class="summary">
Gets and sets the type object for serialization.
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/sa1bf03e" target="_blank">TypeId</a></td><td><div class="summary">When implemented in a derived class, gets a unique identifier for this <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e8kc3626" target="_blank">Attribute</a>.)</td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+CustomDryadLinqSerializerAttribute+Class+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,14 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqLog.Level Field</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Level field" /><meta name="System.Keywords" content="DryadLinqLog.Level field" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqLog.Level" /><meta name="Microsoft.Help.Id" content="F:Microsoft.Research.DryadLinq.DryadLinqLog.Level" /><meta name="Description" content="Gets and sets the logging level of DryadLINQ." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="185c1846-bd97-af24-9a74-6b5679232636" /><meta name="guid" content="185c1846-bd97-af24-9a74-6b5679232636" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqLog<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Level Field</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Gets and sets the logging level of DryadLINQ.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECDCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECDCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECDCAAAAA_tabimgleft"></div><div id="ID0ECDCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECDCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECDCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECDCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECDCAAAAA_tabimgright"></div></div><div id="ID0ECDCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECDCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECDCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECDCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECDCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECDCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECDCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECDCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">int</span> <span class="identifier">Level</span></pre></div><div id="ID0ECDCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static int Level</pre></div><div id="ID0ECDCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="identifier">Level</span> <span class="keyword">As</span> <span class="identifier">Integer</span></pre></div><div id="ID0ECDCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Shared Level As Integer</pre></div><div id="ID0ECDCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">static</span> <span class="identifier">int</span> <span class="identifier">Level</span></pre></div><div id="ID0ECDCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
static int Level</pre></div><div id="ID0ECDCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECDCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECDCAAAAA');</script></div><h4 class="subHeading">Field Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">Int32</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="85ce5a97-d2bb-bd50-ca58-f017d3769b7c.htm" target="">DryadLinqLog Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqLog.Level+Field+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,27 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>CustomDryadLinqSerializerAttribute Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="CustomDryadLinqSerializerAttribute class, constructor" /><meta name="System.Keywords" content="CustomDryadLinqSerializerAttribute.CustomDryadLinqSerializerAttribute constructor" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.CustomDryadLinqSerializerAttribute.#ctor" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.CustomDryadLinqSerializerAttribute.CustomDryadLinqSerializerAttribute" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.CustomDryadLinqSerializerAttribute.#ctor(System.Type)" /><meta name="Description" content="Initializes an instance of CustomDryadLinqSerializer attribute." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="188cfe0e-30ad-5808-ecf3-69159ca7250f" /><meta name="guid" content="188cfe0e-30ad-5808-ecf3-69159ca7250f" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">CustomDryadLinqSerializerAttribute Constructor </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Initializes an instance of CustomDryadLinqSerializer attribute.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBCAAAAA_tabimgleft"></div><div id="ID0ECBCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBCAAAAA_tabimgright"></div></div><div id="ID0ECBCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">CustomDryadLinqSerializerAttribute</span>(
<span class="identifier">Type</span> <span class="parameter">serializerType</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public CustomDryadLinqSerializerAttribute(
Type serializerType
)</pre></div><div id="ID0ECBCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span> (
<span class="parameter">serializerType</span> <span class="keyword">As</span> <span class="identifier">Type</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Sub New (
serializerType As Type
)</pre></div><div id="ID0ECBCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="identifier">CustomDryadLinqSerializerAttribute</span>(
<span class="identifier">Type</span>^ <span class="parameter">serializerType</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
CustomDryadLinqSerializerAttribute(
Type^ serializerType
)</pre></div><div id="ID0ECBCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="serializerType"><dt><span class="parameter">serializerType</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">System<span id="ID0EBCAAACAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCAAACAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Type</a><br /><span>A type that implements IDryadLinqSerializer{T}, where T
is the .NET type to be serialized.</span></dd></dl></div><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="1842f60d-35dc-a934-cc36-dfa0cba934e1.htm" target="">CustomDryadLinqSerializerAttribute Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+CustomDryadLinqSerializerAttribute+Constructor++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,24 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqContext.DryadHomeDirectory Property </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="DryadHomeDirectory property" /><meta name="System.Keywords" content="DryadLinqContext.DryadHomeDirectory property" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.DryadHomeDirectory" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.get_DryadHomeDirectory" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.DryadLinqContext.set_DryadHomeDirectory" /><meta name="Microsoft.Help.Id" content="P:Microsoft.Research.DryadLinq.DryadLinqContext.DryadHomeDirectory" /><meta name="Description" content="Gets or sets the bin directory for Dryad." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1a3367ed-b951-d562-fbbc-4da581fb22ff" /><meta name="guid" content="1a3367ed-b951-d562-fbbc-4da581fb22ff" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqContext<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>DryadHomeDirectory Property </td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Gets or sets the bin directory for Dryad.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECDCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECDCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECDCAAAAA_tabimgleft"></div><div id="ID0ECDCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECDCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECDCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECDCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECDCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECDCAAAAA_tabimgright"></div></div><div id="ID0ECDCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECDCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECDCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECDCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECDCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECDCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECDCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECDCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="identifier">string</span> <span class="identifier">DryadHomeDirectory</span> { <span class="keyword">get</span>; <span class="keyword">set</span>; }</pre></div><div id="ID0ECDCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public string DryadHomeDirectory { get; set; }</pre></div><div id="ID0ECDCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Property</span> <span class="identifier">DryadHomeDirectory</span> <span class="keyword">As</span> <span class="identifier">String</span> 
<span class="keyword">Get</span> 
<span class="keyword">Set</span></pre></div><div id="ID0ECDCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Property DryadHomeDirectory As String 
Get 
Set</pre></div><div id="ID0ECDCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">property</span> <span class="identifier">String</span>^ <span class="identifier">DryadHomeDirectory</span> {
<span class="identifier">String</span>^ <span class="keyword">get</span> ();
<span class="keyword">void</span> <span class="keyword">set</span> (<span class="identifier">String</span>^ <span class="parameter">value</span>);
}</pre></div><div id="ID0ECDCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
property String^ DryadHomeDirectory {
String^ get ();
void set (String^ value);
}</pre></div><div id="ID0ECDCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECDCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECDCAAAAA');</script></div><h4 class="subHeading">Property Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/s1wwdcbf" target="_blank">String</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="093a0025-a8c4-d1e2-a289-d3863b1a845f.htm" target="">DryadLinqContext Class</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqContext.DryadHomeDirectory+Property++100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,23 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>IMultiQueryable Interface</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="IMultiQueryable interface" /><meta name="System.Keywords" content="Microsoft.Research.DryadLinq.IMultiQueryable interface" /><meta name="System.Keywords" content="IMultiQueryable interface, about IMultiQueryable interface" /><meta name="Microsoft.Help.F1" content="Microsoft.Research.DryadLinq.IMultiQueryable" /><meta name="Microsoft.Help.Id" content="T:Microsoft.Research.DryadLinq.IMultiQueryable" /><meta name="Description" content="The base interface to access a collection of IQueryable instances. The DryadLINQ Fork operator returns a value that implements this interface." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89" /><meta name="guid" content="1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">IMultiQueryable Interface</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
The base interface to access a collection of IQueryable instances. The
DryadLINQ Fork operator returns a value that implements this interface.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECAFAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECAFAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECAFAAAAA_tabimgleft"></div><div id="ID0ECAFAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAFAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECAFAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAFAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECAFAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECAFAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECAFAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECAFAAAAA_tabimgright"></div></div><div id="ID0ECAFAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECAFAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECAFAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECAFAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECAFAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECAFAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECAFAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECAFAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">interface</span> <span class="identifier">IMultiQueryable</span></pre></div><div id="ID0ECAFAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public interface IMultiQueryable</pre></div><div id="ID0ECAFAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Interface</span> <span class="identifier">IMultiQueryable</span></pre></div><div id="ID0ECAFAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Interface IMultiQueryable</pre></div><div id="ID0ECAFAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span> <span class="keyword">interface class</span> <span class="identifier">IMultiQueryable</span></pre></div><div id="ID0ECAFAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public interface class IMultiQueryable</pre></div><div id="ID0ECAFAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECAFAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECAFAAAAA');</script></div><p>The <span class="selflink">IMultiQueryable</span> type exposes the following members.</p><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Methods</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="b2f8d418-599c-d187-da9e-38de1cb3b178.htm" target="">ElementType</a></td><td><div class="summary">
Gets the element type of the query at a specified index.
</div></td></tr></table><a href="#mainBody" target="">Top</a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Properties</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><table id="memberList" class="members"><tr><th class="ps_iconColumn">
 
</th><th class="ps_nameColumn">Name</th><th class="ps_descriptionColumn">Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="3406300d-cd1d-f797-61e3-7d00b2abd387.htm" target="">Expression</a></td><td><div class="summary">
Gets the expression tree that is associated with this instance of IMultiQueryable
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="f6c4c853-03b8-57aa-cf35-5e7884f6d55b.htm" target="">NumberOfInputs</a></td><td><div class="summary">
Gets the number of queries in this instance of IMultiQueryable
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="./../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="da94daa0-4711-ab61-cba5-c5474946b285.htm" target="">Provider</a></td><td><div class="summary">
Gets the query provider that is associated with this instance of IMultiQueryable
</div></td></tr></table><a href="#mainBody" target="">Top</a><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+IMultiQueryable+Interface+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,112 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Int32))))</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqQueryable.SumAsQuery``1(System.Linq.IQueryable{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Nullable{System.Int32}}})" /><meta name="Description" content="Same as , but returns an &lt;&lt;&gt;&gt; containing a single element. Computes the sum of a set of nullable Int32 values that is obtained by applying a function to each element of the input dataset." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1ada303f-80bd-0b5c-656e-d984ddee2d16" /><meta name="guid" content="1ada303f-80bd-0b5c-656e-d984ddee2d16" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0EUBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EUBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>SumAsQuery<span id="ID0ESBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ESBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span><span id="ID0EQBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EQBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script> Method (IQueryable<span id="ID0EOBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span><span id="ID0EMBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EKBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EIBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EIBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="typeparameter">TSource</span>, Nullable<span id="ID0EFBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Int32<span id="ID0EDBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Same as <a href="http://msdn2.microsoft.com/en-us/library/bb549400" target="_blank">Sum<span id="ID0ERHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ERHMAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0EPHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPHMAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>(IQueryable<span id="ID0ENHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENHMAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource<span id="ID0ELHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ELHMAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>, Expression<span id="ID0EJHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EJHMAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Func<span id="ID0EHHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHHMAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>TSource, Nullable<span id="ID0EFHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFHMAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Int32<span id="ID0EDHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDHMAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECHMAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EBHMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBHMAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a>, but returns an <a href="http://msdn2.microsoft.com/en-us/library/bb495796" target="_blank">IQueryable</a>&lt;<a href="http://msdn2.microsoft.com/en-us/library/fs5xdbk8" target="_blank">Nullable</a>&lt;<a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">Int32</a>&gt;&gt;
containing a single element. Computes the sum of a set of nullable Int32 values that
is obtained by applying a function to each element of the input dataset.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECYCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECYCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECYCAAAAA_tabimgleft"></div><div id="ID0ECYCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECYCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECYCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECYCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECYCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECYCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECYCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECYCAAAAA_tabimgright"></div></div><div id="ID0ECYCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECYCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECYCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECYCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECYCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECYCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECYCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECYCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">Nullable</span>&lt;<span class="identifier">int</span>&gt;&gt; <span class="identifier">SumAsQuery</span>&lt;TSource&gt;(
<span class="keyword">this</span> <span class="identifier">IQueryable</span>&lt;TSource&gt; <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, <span class="identifier">Nullable</span>&lt;<span class="identifier">int</span>&gt;&gt;&gt; <span class="parameter">selector</span>
)</pre></div><div id="ID0ECYCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static IQueryable&lt;Nullable&lt;int&gt;&gt; SumAsQuery&lt;TSource&gt;(
this IQueryable&lt;TSource&gt; source,
Expression&lt;Func&lt;TSource, Nullable&lt;int&gt;&gt;&gt; selector
)</pre></div><div id="ID0ECYCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">ExtensionAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">SumAsQuery</span>(<span class="keyword">Of</span> TSource) (
<span class="parameter">source</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> TSource),
<span class="parameter">selector</span> <span class="keyword">As</span> <span class="identifier">Expression</span>(<span class="keyword">Of</span> <span class="identifier">Func</span>(<span class="keyword">Of</span> TSource, <span class="identifier">Nullable</span>(<span class="keyword">Of</span> <span class="identifier">Integer</span>)))
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> <span class="identifier">Nullable</span>(<span class="keyword">Of</span> <span class="identifier">Integer</span>))</pre></div><div id="ID0ECYCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;ExtensionAttribute&gt;
Public Shared Function SumAsQuery(Of TSource) (
source As IQueryable(Of TSource),
selector As Expression(Of Func(Of TSource, Nullable(Of Integer)))
) As IQueryable(Of Nullable(Of Integer))</pre></div><div id="ID0ECYCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
[<span class="identifier">ExtensionAttribute</span>]
<span class="keyword">generic</span>&lt;<span class="keyword">typename</span> TSource&gt;
<span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">Nullable</span>&lt;<span class="identifier">int</span>&gt;&gt;^ <span class="identifier">SumAsQuery</span>(
<span class="identifier">IQueryable</span>&lt;TSource&gt;^ <span class="parameter">source</span>,
<span class="identifier">Expression</span>&lt;<span class="identifier">Func</span>&lt;TSource, <span class="identifier">Nullable</span>&lt;<span class="identifier">int</span>&gt;&gt;^&gt;^ <span class="parameter">selector</span>
)</pre></div><div id="ID0ECYCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
[ExtensionAttribute]
generic&lt;typename TSource&gt;
static IQueryable&lt;Nullable&lt;int&gt;&gt;^ SumAsQuery(
IQueryable&lt;TSource&gt;^ source,
Expression&lt;Func&lt;TSource, Nullable&lt;int&gt;&gt;^&gt;^ selector
)</pre></div><div id="ID0ECYCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECYCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECYCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="source"><dt><span class="parameter">source</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBFABXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFABXCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EEABXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEABXCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0ECABXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECABXCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>The input dataset</span></dd></dl><dl paramName="selector"><dt><span class="parameter">selector</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb335710" target="_blank">System.Linq.Expressions<span id="ID0EBNAAXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBNAAXCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Expression</a><span id="ID0EMAAXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EMAAXCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/bb549151" target="_blank">Func</a><span id="ID0EKAAXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EKAAXCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span>, <a href="http://msdn2.microsoft.com/en-us/library/b3h38hb0" target="_blank">Nullable</a><span id="ID0EGAAXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EGAAXCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">Int32</a><span id="ID0EEAAXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEAAXCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0EDAAXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDAAXCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ECAAXCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECAAXCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>A transformation function to apply to each element</span></dd></dl></div><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Type Parameters</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><dl><dt><span class="parameter">TSource</span></dt><dd>The type of the elements of source</dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0ESCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ESCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/b3h38hb0" target="_blank">Nullable</a><span id="ID0EQCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EQCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">Int32</a><span id="ID0EOCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EOCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><span id="ID0ENCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The sum of the values after applying the transformation function<h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EHCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><span class="selflink"><span class="typeparam">TSource</span></span><span id="ID0EFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="http://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank">Extension Methods (Visual Basic)</a> or <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" target="_blank">Extension Methods (C# Programming Guide)</a>.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="f7353d8f-b53e-4485-3a32-a47d26df83b2.htm" target="">SumAsQuery Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.SumAsQuery(TSource)+Method+(IQueryable(TSource)%2c+Expression(Func(TSource%2c+Nullable(Int32))))+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,54 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqQueryable.AverageAsQuery Method (IQueryable(Int64))</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqQueryable.AverageAsQuery(System.Linq.IQueryable{System.Int64})" /><meta name="Description" content="Same as , but returns an &lt;&gt; containing a single element. Computes the average of a set of Int64 values in the input dataset." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1b00f0ed-5c36-e0bc-b09e-225e2e7de9b0" /><meta name="guid" content="1b00f0ed-5c36-e0bc-b09e-225e2e7de9b0" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqQueryable<span id="ID0EFBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>AverageAsQuery Method (IQueryable<span id="ID0EDBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDBABAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Int64<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Same as <a href="http://msdn2.microsoft.com/en-us/library/bb350832" target="_blank">Average(IQueryable<span id="ID0EDFMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EDFMAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script>Int64<span id="ID0EBFMAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFMAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>)</a>, but returns an <a href="http://msdn2.microsoft.com/en-us/library/bb495796" target="_blank">IQueryable</a>&lt;<a href="http://msdn2.microsoft.com/en-us/library/643eft0t" target="_blank">Double</a>&gt;
containing a single element. Computes the average of a set of Int64 values in the input
dataset.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECUCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECUCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECUCAAAAA_tabimgleft"></div><div id="ID0ECUCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECUCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECUCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECUCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECUCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECUCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECUCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECUCAAAAA_tabimgright"></div></div><div id="ID0ECUCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECUCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECUCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECUCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECUCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECUCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECUCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECUCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">double</span>&gt; <span class="identifier">AverageAsQuery</span>(
<span class="keyword">this</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">long</span>&gt; <span class="parameter">source</span>
)</pre></div><div id="ID0ECUCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public static IQueryable&lt;double&gt; AverageAsQuery(
this IQueryable&lt;long&gt; source
)</pre></div><div id="ID0ECUCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;<span class="identifier">ExtensionAttribute</span>&gt;
<span class="keyword">Public</span> <span class="keyword">Shared</span> <span class="keyword">Function</span> <span class="identifier">AverageAsQuery</span> (
<span class="parameter">source</span> <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> <span class="identifier">Long</span>)
) <span class="keyword">As</span> <span class="identifier">IQueryable</span>(<span class="keyword">Of</span> <span class="identifier">Double</span>)</pre></div><div id="ID0ECUCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>&lt;ExtensionAttribute&gt;
Public Shared Function AverageAsQuery (
source As IQueryable(Of Long)
) As IQueryable(Of Double)</pre></div><div id="ID0ECUCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
[<span class="identifier">ExtensionAttribute</span>]
<span class="keyword">static</span> <span class="identifier">IQueryable</span>&lt;<span class="identifier">double</span>&gt;^ <span class="identifier">AverageAsQuery</span>(
<span class="identifier">IQueryable</span>&lt;<span class="identifier">long long</span>&gt;^ <span class="parameter">source</span>
)</pre></div><div id="ID0ECUCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
[ExtensionAttribute]
static IQueryable&lt;double&gt;^ AverageAsQuery(
IQueryable&lt;long long&gt;^ source
)</pre></div><div id="ID0ECUCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECUCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECUCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="source"><dt><span class="parameter">source</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">System.Linq<span id="ID0EBFAATCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBFAATCAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>IQueryable</a><span id="ID0EEAATCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EEAATCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/6yy583ek" target="_blank">Int64</a><span id="ID0ECAATCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ECAATCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br /><span>A set of Int64 values to calculate the average of</span></dd></dl></div><h4 class="subHeading">Return Value</h4>Type: <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EPCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EPCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/643eft0t" target="_blank">Double</a><span id="ID0ENCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0ENCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script><br />The average of the values in the input dataset<h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="http://msdn2.microsoft.com/en-us/library/bb351562" target="_blank">IQueryable</a><span id="ID0EHCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EHCAAAAA?vb=(Of |cpp=&lt;|cs=&lt;|fs=&lt;'|nu=(");
</script><a href="http://msdn2.microsoft.com/en-us/library/6yy583ek" target="_blank">Int64</a><span id="ID0EFCAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EFCAAAAA?vb=)|cpp=&gt;|cs=&gt;|fs=&gt;|nu=)");
</script>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="http://msdn.microsoft.com/en-us/library/bb384936.aspx" target="_blank">Extension Methods (Visual Basic)</a> or <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" target="_blank">Extension Methods (C# Programming Guide)</a>.<a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="6d67ec6b-96ed-0a8b-0ad4-1c0568c7bf91.htm" target="">DryadLinqQueryable Class</a></div><div class="seeAlsoStyle"><a href="1b4e9327-9b61-e353-0051-d36bb399ce3e.htm" target="">AverageAsQuery Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqQueryable.AverageAsQuery+Method+(IQueryable(Int64))+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

View File

@ -0,0 +1,28 @@
<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp"><head><link rel="SHORTCUT ICON" href="./../icons/favicon.ico" /><style type="text/css">.OH_CodeSnippetContainerTabLeftActive, .OH_CodeSnippetContainerTabLeft,.OH_CodeSnippetContainerTabLeftDisabled { }.OH_CodeSnippetContainerTabRightActive, .OH_CodeSnippetContainerTabRight,.OH_CodeSnippetContainerTabRightDisabled { }.OH_footer { }</style><link rel="stylesheet" type="text/css" href="./../styles/branding.css" /><link rel="stylesheet" type="text/css" href="./../styles/branding-en-US.css" /><style type="text/css">
body
{
border-left:5px solid #e6e6e6;
overflow-x:scroll;
overflow-y:scroll;
}
</style><script src="./../scripts/branding.js" type="text/javascript"><!----></script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DryadLinqBinaryWriter.Write Method (Char)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.Research.DryadLinq.DryadLinqBinaryWriter.Write(System.Char)" /><meta name="Description" content="Writes a character to the current writer." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="'true'" /><meta name="container" content="Microsoft.Research.DryadLinq" /><meta name="file" content="1b0a7d22-63b3-062c-d1e8-dfaccece9749" /><meta name="guid" content="1b0a7d22-63b3-062c-d1e8-dfaccece9749" /><meta name="SelfBranded" content="true" /></head><body onload="onLoad()" class="primary-mtps-offline-document"><div class="OH_outerDiv"><div class="OH_outerContent"><table class="TitleTable"><tr><td class="OH_tdTitleColumn">DryadLinqBinaryWriter<span id="ID0EBBABAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBBABAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Write Method (Char)</td><td class="OH_tdRunningTitleColumn">DryadLINQ documentation</td></tr></table><div id="mainSection"><div id="mainBody"><span class="introStyle"></span><div class="summary">
Writes a character to the current writer.
</div><p></p><strong>Namespace:</strong> <a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq</a><br /><strong>Assembly:</strong> <span sdata="assembly">Microsoft.Research.DryadLinq</span> (in Microsoft.Research.DryadLinq.dll) Version: 0.1.1.0 (0.1.1.0)<div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">Syntax</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div id="snippetGroup_Syntax" class="code"><div id="ID0ECBCAAAAA" class="OH_CodeSnippetContainer"><div class="OH_CodeSnippetContainerTabs" id="ID0ECBCAAAAA_tabs"><div class="OH_CodeSnippetContainerTabLeftActive" id="ID0ECBCAAAAA_tabimgleft"></div><div id="ID0ECBCAAAAA_tab1" class="OH_CodeSnippetContainerTabActive" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','C#','1','4');return false;">C#</a></div><div id="ID0ECBCAAAAA_tab2" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual Basic','2','4');return false;">VB</a></div><div id="ID0ECBCAAAAA_tab3" class="OH_CodeSnippetContainerTab" EnableCopyCode="true"><a href="#" onclick="javascript:ChangeTab('ID0ECBCAAAAA','Visual C++','3','4');return false;">C++</a></div><div id="ID0ECBCAAAAA_tab4" class="OH_CodeSnippetContainerTabDisabledNotFirst" EnableCopyCode="true" disabled="true"><a>F#</a></div><div class="OH_CodeSnippetContainerTabRight" id="ID0ECBCAAAAA_tabimgright"></div></div><div id="ID0ECBCAAAAA_codecollection" class="OH_CodeSnippetContainerCodeCollection"><div class="OH_CodeSnippetToolBar"><div class="OH_CodeSnippetToolBarText"><a id="ID0ECBCAAAAA_ViewColorized" href="#" onclick="javascript:ExchangeTitleContent('ID0ECBCAAAAA','4')" title="View Colorized" style="display: none">View Colorized</a><a id="ID0ECBCAAAAA_copycode" href="#" onclick="javascript:CopyToClipboard('ID0ECBCAAAAA','4')" title="Copy to Clipboard">Copy to Clipboard</a><a id="ID0ECBCAAAAA_PrintText" class="OH_PrintText" href="#" onclick="javascript:Print('ID0ECBCAAAAA','4')" title="Print">Print</a></div></div><div id="ID0ECBCAAAAA_code_Div1" class="OH_CodeSnippetContainerCode" style="display: block"><pre><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">char</span> <span class="parameter">ch</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div1" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public void Write(
char ch
)</pre></div><div id="ID0ECBCAAAAA_code_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">Write</span> (
<span class="parameter">ch</span> <span class="keyword">As</span> <span class="identifier">Char</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div2" class="OH_CodeSnippetContainerCode" style="display: none"><pre>Public Sub Write (
ch As Char
)</pre></div><div id="ID0ECBCAAAAA_code_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre><span class="keyword">public</span>:
<span class="keyword">void</span> <span class="identifier">Write</span>(
<span class="identifier">wchar_t</span> <span class="parameter">ch</span>
)</pre></div><div id="ID0ECBCAAAAA_code_Plain_Div3" class="OH_CodeSnippetContainerCode" style="display: none"><pre>public:
void Write(
wchar_t ch
)</pre></div><div id="ID0ECBCAAAAA_code_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div><div id="ID0ECBCAAAAA_code_Plain_Div4" class="OH_CodeSnippetContainerCode" style="display: none"><pre /></div></div></div><script>addSpecificTextLanguageTagSet('ID0ECBCAAAAA');</script></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="ch"><dt><span class="parameter">ch</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/k493b04s" target="_blank">System<span id="ID0EBCAAACAAAAA"> </span><script type="text/javascript">
addToLanSpecTextIdSet("ID0EBCAAACAAAAA?vb=.|cpp=::|cs=.|fs=.|nu=.");
</script>Char</a><br /><span>The character to be written.</span></dd></dl></div><a name="seeAlsoSection"><!----></a><div class="OH_CollapsibleAreaRegion"><div class="OH_regiontitle">See Also</div><div class="OH_CollapsibleArea_HrDiv"><hr class="OH_CollapsibleArea_Hr" /></div></div><div class="OH_clear"></div><div class="seeAlsoStyle"><a href="46c3c8f6-eac2-96d5-3ff0-d837669e9557.htm" target="">DryadLinqBinaryWriter Class</a></div><div class="seeAlsoStyle"><a href="a520e94d-0d05-1c66-4b54-06b43eac5735.htm" target="">Write Overload</a></div><div class="seeAlsoStyle"><a href="efe6507e-9fd8-bbd3-8227-fd6ba9e289c1.htm" target="">Microsoft.Research.DryadLinq Namespace</a></div></div></div></div></div><div id="OH_footer" class="OH_footer"><p /><div class="OH_feedbacklink"><a href="mailto:?subject=DryadLINQ+documentation+DryadLinqBinaryWriter.Write+Method+(Char)+100+EN-US&amp;body=Your%20feedback%20is%20used%20to%20improve%20the%20documentation%20and%20the%20product.%20Your%20e-mail%20address%20will%20not%20be%20used%20for%20any%20other%20purpose%20and%20is%20disposed%20of%20after%20the%20issue%20you%20report%20is%20resolved.%20While%20working%20to%20resolve%20the%20issue%20that%20you%20report%2c%20you%20may%20be%20contacted%20via%20e-mail%20to%20get%20further%20details%20or%20clarification%20on%20the%20feedback%20you%20sent.%20After%20the%20issue%20you%20report%20has%20been%20addressed%2c%20you%20may%20receive%20an%20e-mail%20to%20let%20you%20know%20that%20your%20feedback%20has%20been%20addressed.">Send Feedback</a> on this topic.</div></div></body></html>

Some files were not shown because too many files have changed in this diff Show More