diff --git a/FillNode.aspx b/FillNode.aspx index 6917c8b..aca752f 100644 --- a/FillNode.aspx +++ b/FillNode.aspx @@ -5,8 +5,8 @@ // 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 +// Updated : 04/09/2014 +// Note : Copyright 2007-2014, 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 @@ -17,11 +17,11 @@ // notice, the author's name, and all copyright notices must remain intact in all applications, documentation, // and source files. // -// Version Date Who Comments +// 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. +// 06/21/2007 EFW Created the code +// 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]; @@ -130,7 +130,8 @@ protected override void Render(HtmlTextWriter writer) "{2}\r\n" + "
\r\n" + - "\r\n", childUrl, childTarget, HttpUtility.HtmlEncode(childNode.Title), childNode.Id); + "\r\n", HttpUtility.HtmlEncode(childUrl), childTarget, HttpUtility.HtmlEncode(childNode.Title), + childNode.Id); } else { @@ -144,7 +145,7 @@ protected override void Render(HtmlTextWriter writer) "{1}\r\n" + - "\r\n", childUrl, HttpUtility.HtmlEncode(childNode.Title)); + "\r\n", HttpUtility.HtmlEncode(childUrl), HttpUtility.HtmlEncode(childNode.Title)); } } diff --git a/Index.aspx b/Index.aspx index e243828..463d095 100644 --- a/Index.aspx +++ b/Index.aspx @@ -72,30 +72,28 @@ This page uses an IFRAME but your browser does not support it. DryadLinqQueryable.Apply(T1, T2) Method (IQueryable(T1), IQueryable(T1)[], Expression(Func(IEnumerable(T1)[], IEnumerable(T2))))
DryadLinqQueryable Apply T1, T2  Method (IQueryable T1 ,  IQueryable T1  , Expression Func  IEnumerable T1  , IEnumerable T2   )DryadLINQ documentation
+DryadLinqQueryable.Apply(T1, T2) Method (IQueryable(T1), IQueryable(T1)[], Expression(Func(IEnumerable(T1)[], IEnumerable(T2))))
DryadLinqQueryableApplyT1, T2 Method (IQueryableT1, IQueryableT1, ExpressionFuncIEnumerableT1, IEnumerableT2)DryadLINQ documentation
Compute applyFunc on multiple sources -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static IQueryable<T2> Apply<T1, T2>(
-	this IQueryable<T1> source,
+            

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static IQueryable<T2> Apply<T1, T2>(
+	this IQueryable<T1> source,
 	IQueryable<T1>[] otherSources,
 	Expression<Func<IEnumerable<T1>[], IEnumerable<T2>>> applyFunc
-)

Parameters

source
Type: System.Linq IQueryable T1 
The first input dataset
otherSources
Type:  System.Linq IQueryable T1  
Other input datasets
applyFunc
Type: System.Linq.Expressions Expression Func  IEnumerable T1  , IEnumerable T2   
The function to be applied to the input datasets
Type Parameters

T1
The type of the records of input
T2
The type of the records of output

Return Value

Type: IQueryable T2 
The result of computing applyFunc(source,pieces)

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable T1 . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

\ No newline at end of file +)

Parameters

source
Type: System.LinqIQueryableT1
The first input dataset
otherSources
Type: System.LinqIQueryableT1
Other input datasets
applyFunc
Type: System.Linq.ExpressionsExpressionFuncIEnumerableT1, IEnumerableT2
The function to be applied to the input datasets

Type Parameters

T1
The type of the records of input
T2
The type of the records of output

Return Value

Type: IQueryableT2
The result of computing applyFunc(source,pieces)

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableT1. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference

\ No newline at end of file diff --git a/html/007a2597-5856-ead6-c4c0-24afeb3c146f.htm b/html/007a2597-5856-ead6-c4c0-24afeb3c146f.htm index c093f22..b5ea39b 100644 --- a/html/007a2597-5856-ead6-c4c0-24afeb3c146f.htm +++ b/html/007a2597-5856-ead6-c4c0-24afeb3c146f.htm @@ -1,113 +1,23 @@ -DryadLinqQueryable.LongSelectMany(TSource, TCollection, TResult) Method (IQueryable(TSource), Expression(Func(TSource, Int64, IEnumerable(TCollection))), Expression(Func(TSource, TCollection, TResult)))
DryadLinqQueryable LongSelectMany TSource, TCollection, TResult  Method (IQueryable TSource , Expression Func TSource, Int64, IEnumerable TCollection   , Expression Func TSource, TCollection, TResult  )DryadLINQ documentation
+DryadLinqQueryable.LongSelectMany(TSource, TCollection, TResult) Method (IQueryable(TSource), Expression(Func(TSource, Int64, IEnumerable(TCollection))), Expression(Func(TSource, TCollection, TResult)))
DryadLinqQueryableLongSelectManyTSource, TCollection, TResult Method (IQueryableTSource, ExpressionFuncTSource, Int64, IEnumerableTCollection, ExpressionFuncTSource, TCollection, TResult)DryadLINQ documentation
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. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static IQueryable<TResult> LongSelectMany<TSource, TCollection, TResult>(
-	this IQueryable<TSource> source,
+            

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static IQueryable<TResult> LongSelectMany<TSource, TCollection, TResult>(
+	this IQueryable<TSource> source,
 	Expression<Func<TSource, long, IEnumerable<TCollection>>> selector,
 	Expression<Func<TSource, TCollection, TResult>> resultSelector
-)

Parameters

source
Type: System.Linq IQueryable TSource 
The sequence of input elements
selector
Type: System.Linq.Expressions Expression Func TSource, Int64, IEnumerable TCollection   
A transform function to apply to each source element; - the second parameter of the function represents the index of the source element.
resultSelector
Type: System.Linq.Expressions Expression Func TSource, TCollection, TResult  
A transformation function to apply to each intermediate element
Type Parameters

TSource
The type of the elements of source
TCollection
The type of the element in the intermediate IEnumerable sequences
TResult
The type of the elements of the result

Return Value

Type: IQueryable TResult 
The sequence resulting from applying to each input element and - flattening and transforming the elements in the intermediate sequences

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable TSource . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

\ No newline at end of file +)

Parameters

source
Type: System.LinqIQueryableTSource
The sequence of input elements
selector
Type: System.Linq.ExpressionsExpressionFuncTSource, Int64, IEnumerableTCollection
A transform function to apply to each source element; + the second parameter of the function represents the index of the source element.
resultSelector
Type: System.Linq.ExpressionsExpressionFuncTSource, TCollection, TResult
A transformation function to apply to each intermediate element

Type Parameters

TSource
The type of the elements of source
TCollection
The type of the element in the intermediate IEnumerable sequences
TResult
The type of the elements of the result

Return Value

Type: IQueryableTResult
The sequence resulting from applying
selector
to each input element and + flattening and transforming the elements in the intermediate sequences

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference

\ No newline at end of file diff --git a/html/024262a5-8d35-80f8-1b76-7a6242ad400b.htm b/html/024262a5-8d35-80f8-1b76-7a6242ad400b.htm index f1cb818..605a918 100644 --- a/html/024262a5-8d35-80f8-1b76-7a6242ad400b.htm +++ b/html/024262a5-8d35-80f8-1b76-7a6242ad400b.htm @@ -1,24 +1,9 @@ -DryadLinqContext.JobUsername Property
DryadLinqContext JobUsername Property DryadLINQ documentation
+DryadLinqContext.JobUsername Property
DryadLinqContextJobUsername Property DryadLINQ documentation
Gets or sets the RunAs password for jobs submitted to the cluster. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public string JobUsername { get; set; }

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public string JobUsername { get; set; }

Property Value

Type: String
Remarks

The default is null (use the credentials of the current Thread)

See Also

\ No newline at end of file + void set (String^ value); +}

Property Value

Type: String
Remarks

The default is null (use the credentials of the current Thread)

See Also

Reference

\ No newline at end of file diff --git a/html/03212629-8351-bc14-0918-ef18541c60f6.htm b/html/03212629-8351-bc14-0918-ef18541c60f6.htm index 2289d7c..2d7300b 100644 --- a/html/03212629-8351-bc14-0918-ef18541c60f6.htm +++ b/html/03212629-8351-bc14-0918-ef18541c60f6.htm @@ -1,36 +1,13 @@ -DataProvider.GetMetaData Method
DataProvider GetMetaData Method DryadLINQ documentation
+DataProvider.GetMetaData Method
DataProviderGetMetaData Method DryadLINQ documentation
Gets the metadata of a specified dataset. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public abstract DryadLinqMetaData GetMetaData(
-	DryadLinqContext context,
-	Uri dataSetUri
-)

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public abstract DryadLinqMetaData GetMetaData(
+	DryadLinqContext context,
+	Uri dataSetUri
+)

Return Value

Type: DryadLinqMetaData
The metadata. Returns null if metadats is not present.
See Also

\ No newline at end of file +) abstract

Parameters

context
Type: Microsoft.Research.DryadLinqDryadLinqContext
A DryadLinqConext object.
dataSetUri
Type: SystemUri
The URI of the dataset.

Return Value

Type: DryadLinqMetaData
The metadata. Returns null if metadats is not present.
See Also

Reference

\ No newline at end of file diff --git a/html/032e436e-efdc-433f-654c-75ce93cdb5d2.htm b/html/032e436e-efdc-433f-654c-75ce93cdb5d2.htm index 5d98595..27a9d0f 100644 --- a/html/032e436e-efdc-433f-654c-75ce93cdb5d2.htm +++ b/html/032e436e-efdc-433f-654c-75ce93cdb5d2.htm @@ -1,40 +1,13 @@ -GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult).RecursiveAccumulate Method
GenericDecomposable TDecomposable, TSource, TAccumulate, TResult  RecursiveAccumulate Method DryadLINQ documentation
+GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult).RecursiveAccumulate Method
GenericDecomposableTDecomposable, TSource, TAccumulate, TResultRecursiveAccumulate Method DryadLINQ documentation
Combines two accumulator values into one. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static TAccumulate RecursiveAccumulate(
+            

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static TAccumulate RecursiveAccumulate(
 	TAccumulate acc,
 	TAccumulate val
-)

Parameters

acc
Type: TAccumulate
The first accumulator value
val
Type: TAccumulate
The second accumulator value

Return Value

Type: TAccumulate
An accumulator value resulting from combining two accumulator values
See Also

\ No newline at end of file +)

Parameters

acc
Type: TAccumulate
The first accumulator value
val
Type: TAccumulate
The second accumulator value

Return Value

Type: TAccumulate
An accumulator value resulting from combining two accumulator values
See Also

Reference

\ No newline at end of file diff --git a/html/05317da6-b361-379e-397d-e34d85c6856d.htm b/html/05317da6-b361-379e-397d-e34d85c6856d.htm index 7b0edfb..c5f7b32 100644 --- a/html/05317da6-b361-379e-397d-e34d85c6856d.htm +++ b/html/05317da6-b361-379e-397d-e34d85c6856d.htm @@ -1,100 +1,11 @@ -DryadLinqQueryable.AssumeRangePartition Method
DryadLinqQueryable AssumeRangePartition Method DryadLINQ documentation
Overload List

-   - NameDescription
Public methodStatic memberAssumeRangePartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  , Boolean)
+DryadLinqQueryable.AssumeRangePartition Method
DryadLinqQueryableAssumeRangePartition Method DryadLINQ documentation
Overload List

+   + NameDescription
Public methodStatic memberAssumeRangePartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey, Boolean)
Instructs DryadLINQ to assume that the dataset is range partitioned. -
Public methodStatic memberAssumeRangePartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  ,  TKey )
+
Public methodStatic memberAssumeRangePartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey, TKey)
Instructs DryadLINQ to assume that the dataset is range partitioned by a specified list of keys. -
Public methodStatic memberAssumeRangePartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  , IComparer TKey , Boolean)
+
Public methodStatic memberAssumeRangePartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey, IComparerTKey, Boolean)
Instructs DryadLINQ to assume that the dataset is range partitioned. -
Public methodStatic memberAssumeRangePartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  ,  TKey , IComparer TKey )
+
Public methodStatic memberAssumeRangePartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey, TKey, IComparerTKey)
Instructs DryadLINQ to assume that the dataset is range partitioned by a specified list of keys. -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/06266f74-a819-017c-e03f-0f9761a28c52.htm b/html/06266f74-a819-017c-e03f-0f9761a28c52.htm index 5524bf9..faba00b 100644 --- a/html/06266f74-a819-017c-e03f-0f9761a28c52.htm +++ b/html/06266f74-a819-017c-e03f-0f9761a28c52.htm @@ -1,28 +1,13 @@ -DryadLinqContext.CompileForVertexDebugging Property
DryadLinqContext CompileForVertexDebugging Property DryadLINQ documentation
+DryadLinqContext.CompileForVertexDebugging Property
DryadLinqContextCompileForVertexDebugging Property DryadLINQ documentation
Gets or sets the value specifying whether to compile code with debugging support. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public bool CompileForVertexDebugging { get; set; }

Property Value

Type: Boolean
Remarks

+

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public bool CompileForVertexDebugging { get; set; }

Property Value

Type: Boolean
Remarks

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. -

The default is false.

See Also

\ No newline at end of file +

The default is false.

See Also

Reference

\ No newline at end of file diff --git a/html/06abeb89-68da-4121-d33e-c40a6c5767a0.htm b/html/06abeb89-68da-4121-d33e-c40a6c5767a0.htm index 8b6be02..91fde6a 100644 --- a/html/06abeb89-68da-4121-d33e-c40a6c5767a0.htm +++ b/html/06abeb89-68da-4121-d33e-c40a6c5767a0.htm @@ -1,28 +1,10 @@ -DryadLinqBinaryWriter.Write Method (Boolean)
DryadLinqBinaryWriter Write Method (Boolean)DryadLINQ documentation
+DryadLinqBinaryWriter.Write Method (Boolean)
DryadLinqBinaryWriterWrite Method (Boolean)DryadLINQ documentation
Writes a boolean value to the current writer. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public void Write(
-	bool b
-)
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public void Write(
+	bool b
+)

Parameters

b
Type: SystemBoolean
The boolean value to be written.
See Also

Reference

\ No newline at end of file diff --git a/html/06fee6ad-aae4-3914-38a5-269ea8886d4a.htm b/html/06fee6ad-aae4-3914-38a5-269ea8886d4a.htm index 5a8d928..4292afe 100644 --- a/html/06fee6ad-aae4-3914-38a5-269ea8886d4a.htm +++ b/html/06fee6ad-aae4-3914-38a5-269ea8886d4a.htm @@ -1,12 +1,5 @@ -DryadLinqJobInfo Properties
DryadLinqJobInfo PropertiesDryadLINQ documentation

The DryadLinqJobInfo type exposes the following members.

Properties

-   - NameDescription
Public propertyJobIds
+DryadLinqJobInfo Properties
DryadLinqJobInfo PropertiesDryadLINQ documentation

The DryadLinqJobInfo type exposes the following members.

Properties

+   + NameDescription
Public propertyJobIds
Gets the job ids of the DryadLINQ jobs. -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/07206258-2e2e-6aa3-4c79-0c0674875849.htm b/html/07206258-2e2e-6aa3-4c79-0c0674875849.htm index f33cda1..21d08f3 100644 --- a/html/07206258-2e2e-6aa3-4c79-0c0674875849.htm +++ b/html/07206258-2e2e-6aa3-4c79-0c0674875849.htm @@ -1,64 +1,33 @@ -ForkTuple(T1, T2, T3) Structure
ForkTuple T1, T2, T3  StructureDryadLINQ documentation
+ForkTuple(T1, T2, T3) Structure
ForkTupleT1, T2, T3 StructureDryadLINQ documentation
Represents a tuple of three elements that may not have valid values. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

[SerializableAttribute]
-public struct ForkTuple<T1, T2, T3> : IEquatable<ForkTuple<T1, T2, T3>>

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

[SerializableAttribute]
+public struct ForkTuple<T1, T2, T3> : IEquatable<ForkTuple<T1, T2, T3>>
+
Type Parameters

T1
The type of the first element
T2
The type of the second element
T3
The type of the third element

The ForkTuple T1, T2, T3  type exposes the following members.

Constructors

-   - NameDescription
Public methodForkTuple T1, T2, T3 
+public value class ForkTuple : IEquatable<ForkTuple<T1, T2, T3>>

Type Parameters

T1
The type of the first element
T2
The type of the second element
T3
The type of the third element

The ForkTupleT1, T2, T3 type exposes the following members.

Constructors

+   + NameDescription
Public methodForkTupleT1, T2, T3
Initializes an instance of ForkTuple of three elements. All the elements have valid values. -
Top
Methods

-   - NameDescription
Public methodEquals(Object)
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodEquals(ForkTuple T1, T2, T3 )
+
Top
Methods

+   + NameDescription
Public methodEquals(Object)
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodEquals(ForkTupleT1, T2, T3)
Determines whether the current ForkTuple is equal to a specified ForkTuple. -
Public methodGetHashCode
+
Public methodGetHashCode
Gets the hash code of this instance of ForkTuple. -
(Overrides ValueType GetHashCode .)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Properties

-   - NameDescription
Public propertyFirst
+
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Properties

+   + NameDescription
Public propertyFirst
Gets and sets the first element. -
Public propertyHasFirst
+
Public propertyHasFirst
true iff the value of the first element is valid. -
Public propertyHasSecond
+
Public propertyHasSecond
true iff the value of the second element is valid. -
Public propertyHasThird
+
Public propertyHasThird
true iff the value of the third element is valid. -
Public propertySecond
+
Public propertySecond
Gets and sets the second element. -
Public propertyThird
+
Public propertyThird
Gets and sets the third element. -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/072ffb1e-75fa-7aa1-fb37-b34393ddcab4.htm b/html/072ffb1e-75fa-7aa1-fb37-b34393ddcab4.htm index 3db7f82..891b2d3 100644 --- a/html/072ffb1e-75fa-7aa1-fb37-b34393ddcab4.htm +++ b/html/072ffb1e-75fa-7aa1-fb37-b34393ddcab4.htm @@ -1,144 +1,11 @@ -DryadLinqQueryable.ApplyPerPartition Method
DryadLinqQueryable ApplyPerPartition Method DryadLINQ documentation
Overload List

-   - NameDescription
Public methodStatic memberApplyPerPartition T1, T2 (IQueryable T1 , Expression Func IEnumerable T1 , IEnumerable T2   )
+DryadLinqQueryable.ApplyPerPartition Method
DryadLinqQueryableApplyPerPartition Method DryadLINQ documentation
Overload List

+   + NameDescription
Public methodStatic memberApplyPerPartitionT1, T2(IQueryableT1, ExpressionFuncIEnumerableT1, IEnumerableT2)
Compute applyFunc(source) -
Public methodStatic memberApplyPerPartition T1, T2 (IQueryable T1 ,  IQueryable , Expression Func IEnumerable T1 ,  IEnumerable , IEnumerable T2   , Boolean)
+
Public methodStatic memberApplyPerPartitionT1, T2(IQueryableT1, IQueryable, ExpressionFuncIEnumerableT1, IEnumerable, IEnumerableT2, Boolean)
Compute applyFunc on multiple sources -
Public methodStatic memberApplyPerPartition T1, T2 (IQueryable T1 ,  IQueryable T1  , Expression Func  IEnumerable T1  , IEnumerable T2   , Boolean)
+
Public methodStatic memberApplyPerPartitionT1, T2(IQueryableT1, IQueryableT1, ExpressionFuncIEnumerableT1, IEnumerableT2, Boolean)
Compute applyFunc on multiple sources -
Public methodStatic memberApplyPerPartition T1, T2, T3 (IQueryable T1 , IQueryable T2 , Expression Func IEnumerable T1 , IEnumerable T2 , IEnumerable T3   , Boolean)
+
Public methodStatic memberApplyPerPartitionT1, T2, T3(IQueryableT1, IQueryableT2, ExpressionFuncIEnumerableT1, IEnumerableT2, IEnumerableT3, Boolean)
Compute applyFunc(source1, source2) -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/092201f1-5901-0976-887e-a1f961caaf66.htm b/html/092201f1-5901-0976-887e-a1f961caaf66.htm index 6b0fc9b..2b2095f 100644 --- a/html/092201f1-5901-0976-887e-a1f961caaf66.htm +++ b/html/092201f1-5901-0976-887e-a1f961caaf66.htm @@ -1,54 +1,14 @@ -DryadLinqQueryable.AverageAsQuery Method (IQueryable(Int32))
DryadLinqQueryable AverageAsQuery Method (IQueryable Int32 )DryadLINQ documentation
- Same as Average(IQueryable Int32 ), but returns an IQueryable<Double> +DryadLinqQueryable.AverageAsQuery Method (IQueryable(Int32))
DryadLinqQueryableAverageAsQuery Method (IQueryableInt32)DryadLINQ documentation

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static IQueryable<double> AverageAsQuery(
-	this IQueryable<int> source
-)

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static IQueryable<double> AverageAsQuery(
+	this IQueryable<int> source
+)

Parameters

source
Type: System.Linq IQueryable Int32 
A set of Int32 values to calculate the average of

Return Value

Type: IQueryable Double 
The average of the values in the input dataset

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable Int32 . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

\ No newline at end of file +)

Parameters

source
Type: System.LinqIQueryableInt32
A set of Int32 values to calculate the average of

Return Value

Type: IQueryableDouble
The average of the values in the input dataset

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableInt32. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference

\ No newline at end of file diff --git a/html/093a0025-a8c4-d1e2-a289-d3863b1a845f.htm b/html/093a0025-a8c4-d1e2-a289-d3863b1a845f.htm index 7c2b4f9..81fa45c 100644 --- a/html/093a0025-a8c4-d1e2-a289-d3863b1a845f.htm +++ b/html/093a0025-a8c4-d1e2-a289-d3863b1a845f.htm @@ -1,129 +1,101 @@ -DryadLinqContext Class
DryadLinqContext ClassDryadLINQ documentation
+DryadLinqContext Class
DryadLinqContext ClassDryadLINQ documentation
Represents the context necessary to prepare and execute a DryadLinq Query, -
Inheritance Hierarchy

System Object
  Microsoft.Research.DryadLinq DryadLinqContext

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public class DryadLinqContext : IDisposable, 
-	IEquatable<DryadLinqContext>

The DryadLinqContext type exposes the following members.

Constructors

-   - NameDescription
Public methodDryadLinqContext(DryadLinqCluster)
+
Inheritance Hierarchy

SystemObject
  Microsoft.Research.DryadLinqDryadLinqContext

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public class DryadLinqContext : IDisposable, 
+	IEquatable<DryadLinqContext>

The DryadLinqContext type exposes the following members.

Constructors

+   + NameDescription
Public methodDryadLinqContext(DryadLinqCluster)
Initializes a new instance of the DryadLinqContext class for a specified cluster. -
Public methodDryadLinqContext(Int32, String)
+
Public methodDryadLinqContext(Int32, String)
Initializes a new instance of the DryadLinqContext class for local execution. -
Public methodDryadLinqContext(String, PlatformKind)
+
Public methodDryadLinqContext(String, PlatformKind)
Initializes a new instance of the DryadLinqContext class for a YARN cluster. -
Top
Methods

-   - NameDescription
Public methodAzureAccountKey
+
Top
Methods

+   + NameDescription
Public methodAzureAccountKey
Get the key associated with a named account, or null if it is not registered or auto-detected from the subscriptions -
Public methodClientVersion
+
Public methodClientVersion
Version of the DryadLinq client components -
Public methodDispose
+
Public methodDispose
Releases all resources used by the DryadLinqContext. -
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodEquals(DryadLinqContext)
+
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodEquals(DryadLinqContext)
Determines whether this instance of DryadLinqContext is equal to another instance of DryadLinqContext. -
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFromEnumerable T 
+
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFromEnumerableT
Converts an IEnumerable{T} to a DryadLinq specialized IQueryable{T}. -
Public methodFromStore T (String)
+
Public methodFromStoreT(String)
Open a dataset as a DryadLinq specialized IQueryable{T}. -
Public methodFromStore T (Uri)
+
Public methodFromStoreT(Uri)
Open a dataset as a DryadLinq specialized IQueryable{T}. -
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRegisterAzureAccount
+
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRegisterAzureAccount
Register a named account with the specified storage key, so that key won't need to be specified in Azure blob URIs -
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties

-   - NameDescription
Public propertyCompileForVertexDebugging
+
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties

+   + NameDescription
Public propertyCompileForVertexDebugging
Gets or sets the value specifying whether to compile code with debugging support. -
Public propertyDebugBreak
+
Public propertyDebugBreak
Gets and sets the value specifying whether a vertex should break into the debugger -
Public propertyDryadHomeDirectory
+
Public propertyDryadHomeDirectory
Gets or sets the bin directory for Dryad. -
Public propertyEnableMultiThreadingInVertex
+
Public propertyEnableMultiThreadingInVertex
Gets or sets whether user-defined methods and custom serializers may be called on multiple threads of a single process. -
Public propertyEnableSpeculativeDuplication
+
Public propertyEnableSpeculativeDuplication
Enables or disables speculative duplication of vertices based on runtime performance analysis. -
Public propertyExecutorKind
+
Public propertyExecutorKind
Gets and sets the job executor. The current release only supports Dryad. -
Public propertyForceGC
+
Public propertyForceGC
Gets or sets whether to run GC after Moxie runs each task. -
Public propertyGraphManagerNode
+
Public propertyGraphManagerNode
Gets or sets the node that should be used for running the Dryad Graph Manager task. -
Public propertyHeadNode
+
Public propertyHeadNode
Gets or sets the head node for executing a DryadLinq query. -
Public propertyIntermediateDataCompressionScheme
+
Public propertyIntermediateDataCompressionScheme
Gets or sets the value specifying whether data passed between stages will be compressed. -
Public propertyJobEnvironmentVariables
+
Public propertyJobEnvironmentVariables
Gets the collection of environment variables associated with the DryadLINQ job. -
Public propertyJobFriendlyName
+
Public propertyJobFriendlyName
Gets or sets the descriptive name used to describe the DryadLINQ job. -
Public propertyJobMaxNodes
+
Public propertyJobMaxNodes
Gets or sets the maximum number of cluster nodes for the DryadLINQ job. -
Public propertyJobMinNodes
+
Public propertyJobMinNodes
Gets or sets the minimum number of cluster nodes for the DryadLINQ job. -
Public propertyJobPassword
+
Public propertyJobPassword
Gets or sets the RunAs password for jobs submitted to the cluster. -
Public propertyJobRuntimeLimit
+
Public propertyJobRuntimeLimit
Gets or sets the maximum execution time for the DryadLINQ job, in seconds. -
Public propertyJobUsername
+
Public propertyJobUsername
Gets or sets the RunAs password for jobs submitted to the cluster. -
Public propertyLocalDebug
+
Public propertyLocalDebug
Gets or sets the value specifying whether to use Local debugging mode. -
Public propertyLocalExecution
- Gets or sets the value specifying whether to use Local execution mode. -
Public propertyMatchClientNetFrameworkVersion
+
Public propertyMatchClientNetFrameworkVersion
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. -
Public propertyNodeGroup
+
Public propertyNodeGroup
Gets or sets the name of the compute node group when running on the cluster. -
Public propertyOutputDataCompressionScheme
+
Public propertyOutputDataCompressionScheme
Gets or sets the value specifying the compression scheme for output data. -
Public propertyPartitionUncPath
+
Public propertyPartitionUncPath
Gets or sets the partition UNC path used when constructing a partitioned table. -
Public propertyPeloponneseHomeDirectory
+
Public propertyPeloponneseHomeDirectory
Gets or sets the bin directory for Peloponnese. -
Public propertyPlatformKind
+
Public propertyPlatformKind
Gets or sets the service platform -
Public propertyResourcesToAdd
+
Public propertyResourcesToAdd
Get the list of resources to add to the DryadLINQ job. -
Public propertyResourcesToRemove
+
Public propertyResourcesToRemove
Get the list of resources to be excluded from the DryadLINQ job. -
Public propertyRuntimeTraceLevel
+
Public propertyRuntimeTraceLevel
Gets or sets the trace level to use for DryadLINQ Query jobs. -
Public propertySelectOrderPreserving
+
Public propertySelectOrderPreserving
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. -
Top
Remarks

+

Top
Remarks

DryadLinqContext is the main entry point for the DryadLINQ framework. The context that is maintained by a DryadLinqContext instance includes configuration information. @@ -132,4 +104,4 @@

A DryadLinqContext may hold open connections to cluster services. To release these connections, call DryadLinqContext.Dispose(). -

See Also

\ No newline at end of file +

See Also

Reference

\ No newline at end of file diff --git a/html/09443df1-c90c-bb8f-a15e-b24dadb75fe3.htm b/html/09443df1-c90c-bb8f-a15e-b24dadb75fe3.htm index 2b2d1f8..605fc7c 100644 --- a/html/09443df1-c90c-bb8f-a15e-b24dadb75fe3.htm +++ b/html/09443df1-c90c-bb8f-a15e-b24dadb75fe3.htm @@ -1,94 +1,17 @@ -DryadLinqQueryable.ApplyPerPartition(T1, T2) Method (IQueryable(T1), Expression(Func(IEnumerable(T1), IEnumerable(T2))))
DryadLinqQueryable ApplyPerPartition T1, T2  Method (IQueryable T1 , Expression Func IEnumerable T1 , IEnumerable T2   )DryadLINQ documentation
+DryadLinqQueryable.ApplyPerPartition(T1, T2) Method (IQueryable(T1), Expression(Func(IEnumerable(T1), IEnumerable(T2))))
DryadLinqQueryableApplyPerPartitionT1, T2 Method (IQueryableT1, ExpressionFuncIEnumerableT1, IEnumerableT2)DryadLINQ documentation
Compute applyFunc(source) -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static IQueryable<T2> ApplyPerPartition<T1, T2>(
-	this IQueryable<T1> source,
+            

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static IQueryable<T2> ApplyPerPartition<T1, T2>(
+	this IQueryable<T1> source,
 	Expression<Func<IEnumerable<T1>, IEnumerable<T2>>> applyFunc
-)

Parameters

source
Type: System.Linq IQueryable T1 
The input dataset
applyFunc
Type: System.Linq.Expressions Expression Func IEnumerable T1 , IEnumerable T2   
The function to be applied to the input dataset
Type Parameters

T1
The type of the records of the input dataset
T2
The type of the records of the output dataset

Return Value

Type: IQueryable T2 
The result of computing applyFunc(source)

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable T1 . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

\ No newline at end of file +)

Parameters

source
Type: System.LinqIQueryableT1
The input dataset
applyFunc
Type: System.Linq.ExpressionsExpressionFuncIEnumerableT1, IEnumerableT2
The function to be applied to the input dataset

Type Parameters

T1
The type of the records of the input dataset
T2
The type of the records of the output dataset

Return Value

Type: IQueryableT2
The result of computing applyFunc(source)

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableT1. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference

\ No newline at end of file diff --git a/html/09b7f762-48da-5a16-77e3-8b841c6f83ea.htm b/html/09b7f762-48da-5a16-77e3-8b841c6f83ea.htm index edf4387..f43ced8 100644 --- a/html/09b7f762-48da-5a16-77e3-8b841c6f83ea.htm +++ b/html/09b7f762-48da-5a16-77e3-8b841c6f83ea.htm @@ -1,32 +1,13 @@ -GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Methods
GenericDecomposable TDecomposable, TSource, TAccumulate, TResult  MethodsDryadLINQ documentation

The GenericDecomposable TDecomposable, TSource, TAccumulate, TResult  type exposes the following members.

Methods

-   - NameDescription
Public methodStatic memberAccumulate
+GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Methods
GenericDecomposableTDecomposable, TSource, TAccumulate, TResult MethodsDryadLINQ documentation
\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/0a7aa40b-fc7c-5446-0fc8-d8747f317d31.htm b/html/0a7aa40b-fc7c-5446-0fc8-d8747f317d31.htm index 576762d..9fb8f83 100644 --- a/html/0a7aa40b-fc7c-5446-0fc8-d8747f317d31.htm +++ b/html/0a7aa40b-fc7c-5446-0fc8-d8747f317d31.htm @@ -1,28 +1,10 @@ -DryadLinqBinaryWriter.Write Method (Double)
DryadLinqBinaryWriter Write Method (Double)DryadLINQ documentation
+DryadLinqBinaryWriter.Write Method (Double)
DryadLinqBinaryWriterWrite Method (Double)DryadLINQ documentation
Writes a 64-bit floating point number to the current writer. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public void Write(
-	double val
-)

Parameters

val
Type: System Double
A 64-bit floating point number to write.
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public void Write(
+	double val
+)

Parameters

val
Type: SystemDouble
A 64-bit floating point number to write.
See Also

Reference

\ No newline at end of file diff --git a/html/0b5ec7e8-a29f-e104-b8c6-56d15489af32.htm b/html/0b5ec7e8-a29f-e104-b8c6-56d15489af32.htm index b856cc6..8436dff 100644 --- a/html/0b5ec7e8-a29f-e104-b8c6-56d15489af32.htm +++ b/html/0b5ec7e8-a29f-e104-b8c6-56d15489af32.htm @@ -1,95 +1,18 @@ -DryadLinqQueryable.FirstAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Boolean)))
DryadLinqQueryable FirstAsQuery TSource  Method (IQueryable TSource , Expression Func TSource, Boolean  )DryadLINQ documentation
- Same as First TSource (IQueryable TSource , Expression Func TSource, Boolean  ), but returns an IQueryable<TSource> +DryadLinqQueryable.FirstAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Boolean)))
DryadLinqQueryableFirstAsQueryTSource Method (IQueryableTSource, ExpressionFuncTSource, Boolean)DryadLINQ documentation

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static IQueryable<TSource> FirstAsQuery<TSource>(
-	this IQueryable<TSource> source,
+            

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static IQueryable<TSource> FirstAsQuery<TSource>(
+	this IQueryable<TSource> source,
 	Expression<Func<TSource, bool>> predicate
-)

Parameters

source
Type: System.Linq IQueryable TSource 
The input sequence
predicate
Type: System.Linq.Expressions Expression Func TSource, Boolean  
A predicate to test each element for a condition
Type Parameters

TSource
The type of the elements of source

Return Value

Type: IQueryable TSource 
The first element in the input sequence that satisfies the predicate

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable TSource . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions

ExceptionCondition
DryadLinqExceptionNo element in the input sequence satisfies the predicate
See Also

\ No newline at end of file +)

Parameters

source
Type: System.LinqIQueryableTSource
The input sequence
predicate
Type: System.Linq.ExpressionsExpressionFuncTSource, Boolean
A predicate to test each element for a condition

Type Parameters

TSource
The type of the elements of source

Return Value

Type: IQueryableTSource
The first element in the input sequence that satisfies the predicate

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions

ExceptionCondition
DryadLinqExceptionNo element in the input sequence satisfies the predicate
See Also

Reference

\ No newline at end of file diff --git a/html/0bc5d95a-ef00-1073-ac66-8aa04e76bea4.htm b/html/0bc5d95a-ef00-1073-ac66-8aa04e76bea4.htm index 7113876..214c35f 100644 --- a/html/0bc5d95a-ef00-1073-ac66-8aa04e76bea4.htm +++ b/html/0bc5d95a-ef00-1073-ac66-8aa04e76bea4.htm @@ -1,24 +1,9 @@ -DryadLinqContext.DebugBreak Property
DryadLinqContext DebugBreak Property DryadLINQ documentation
+DryadLinqContext.DebugBreak Property
DryadLinqContextDebugBreak Property DryadLINQ documentation
Gets and sets the value specifying whether a vertex should break into the debugger -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public bool DebugBreak { get; set; }

Property Value

Type: Boolean
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public bool DebugBreak { get; set; }

Property Value

Type: Boolean
See Also

Reference

\ No newline at end of file diff --git a/html/0d08006d-22e5-4a13-1882-0209adfb201b.htm b/html/0d08006d-22e5-4a13-1882-0209adfb201b.htm index 0c514da..97e4eac 100644 --- a/html/0d08006d-22e5-4a13-1882-0209adfb201b.htm +++ b/html/0d08006d-22e5-4a13-1882-0209adfb201b.htm @@ -1,14 +1,5 @@ -DryadLinqException Methods
DryadLinqException MethodsDryadLINQ documentation

The DryadLinqException type exposes the following members.

Methods

-   - NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetBaseException
When overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions.
(Inherited from Exception.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetObjectData
+DryadLinqException Methods
DryadLinqException MethodsDryadLINQ documentation

The DryadLinqException type exposes the following members.

Methods

+   + NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetBaseException
When overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions.
(Inherited from Exception.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetObjectData
Sets the SerializationInfo with information about the exception. -
(Overrides Exception GetObjectData(SerializationInfo, StreamingContext).)
Public methodGetType
Gets the runtime type of the current instance.
(Inherited from Exception.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Creates and returns a string representation of the current exception.
(Inherited from Exception.)
Top
See Also

\ No newline at end of file +
(Overrides ExceptionGetObjectData(SerializationInfo, StreamingContext).)
Public methodGetType
Gets the runtime type of the current instance.
(Inherited from Exception.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Creates and returns a string representation of the current exception.
(Inherited from Exception.)
Top
See Also

Reference

\ No newline at end of file diff --git a/html/0d63a0c3-846a-e70d-6184-23387d3a9160.htm b/html/0d63a0c3-846a-e70d-6184-23387d3a9160.htm index 087bbf3..d19e2ad 100644 --- a/html/0d63a0c3-846a-e70d-6184-23387d3a9160.htm +++ b/html/0d63a0c3-846a-e70d-6184-23387d3a9160.htm @@ -1,40 +1,21 @@ -DryadLinqContext Methods
DryadLinqContext MethodsDryadLINQ documentation

The DryadLinqContext type exposes the following members.

Methods

-   - NameDescription
Public methodAzureAccountKey
+DryadLinqContext Methods
DryadLinqContext MethodsDryadLINQ documentation

The DryadLinqContext type exposes the following members.

Methods

+   + NameDescription
Public methodAzureAccountKey
Get the key associated with a named account, or null if it is not registered or auto-detected from the subscriptions -
Public methodClientVersion
+
Public methodClientVersion
Version of the DryadLinq client components -
Public methodDispose
+
Public methodDispose
Releases all resources used by the DryadLinqContext. -
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodEquals(DryadLinqContext)
+
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodEquals(DryadLinqContext)
Determines whether this instance of DryadLinqContext is equal to another instance - of DryadLinqContext. -
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFromEnumerable T 
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFromEnumerableT
Converts an IEnumerable{T} to a DryadLinq specialized IQueryable{T}. -
Public methodFromStore T (String)
+
Public methodFromStoreT(String)
Open a dataset as a DryadLinq specialized IQueryable{T}. -
Public methodFromStore T (Uri)
+
Public methodFromStoreT(Uri)
Open a dataset as a DryadLinq specialized IQueryable{T}. -
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRegisterAzureAccount
+
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRegisterAzureAccount
Register a named account with the specified storage key, so that key won't need to be specified in Azure blob URIs -
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also

\ No newline at end of file +
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also

Reference

\ No newline at end of file diff --git a/html/0e7a8462-0d75-3d0c-7203-579f46b9765a.htm b/html/0e7a8462-0d75-3d0c-7203-579f46b9765a.htm index 15af12f..3976319 100644 --- a/html/0e7a8462-0d75-3d0c-7203-579f46b9765a.htm +++ b/html/0e7a8462-0d75-3d0c-7203-579f46b9765a.htm @@ -1,14 +1,4 @@ -DryadLinqBinaryReader.ReadUInt64 Method
DryadLinqBinaryReader ReadUInt64 Method DryadLINQ documentation
+DryadLinqBinaryReader.ReadUInt64 Method
DryadLinqBinaryReaderReadUInt64 Method DryadLINQ documentation
Reads a 64-bit unsigned integer from the current reader. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public ulong ReadUInt64()

Return Value

Type: UInt64
A 64-bit unsigned integer.
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public ulong ReadUInt64()

Return Value

Type: UInt64
A 64-bit unsigned integer.
See Also

Reference

\ No newline at end of file diff --git a/html/0f3128d9-99ac-a067-779a-bdc86f46af10.htm b/html/0f3128d9-99ac-a067-779a-bdc86f46af10.htm index ad58062..4748d11 100644 --- a/html/0f3128d9-99ac-a067-779a-bdc86f46af10.htm +++ b/html/0f3128d9-99ac-a067-779a-bdc86f46af10.htm @@ -1,64 +1,53 @@ -DryadLinqBinaryReader Methods
DryadLinqBinaryReader MethodsDryadLINQ documentation

The DryadLinqBinaryReader type exposes the following members.

Methods

-   - NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodReadBool
+DryadLinqBinaryReader Methods
DryadLinqBinaryReader MethodsDryadLINQ documentation

The DryadLinqBinaryReader type exposes the following members.

Methods

+   + NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodReadBool
Reads a boolean value from the current reader and advances the current position of the reader by one byte. -
Public methodReadBytes
+
Public methodReadBytes
Reads byteCount bytes into destBuffer starting at offset. -
Public methodReadChar
+
Public methodReadChar
Reads a character from the current reader and advances the current position of the reader according to the encoding and the character. -
Public methodReadChars
+
Public methodReadChars
Reads charCount chars into destBuffer starting at offset. -
Public methodReadCompactInt32
+
Public methodReadCompactInt32
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. -
Public methodReadDateTime
+
Public methodReadDateTime
Reads a value of DateTime from the current reader. -
Public methodReadDecimal
+
Public methodReadDecimal
Reads a decimal number from the current reader. -
Public methodReadDouble
+
Public methodReadDouble
Reads a 64-bit floating point number from the current reader. -
Public methodReadGuid
+
Public methodReadGuid
Reads a value of Guid from the current reader. -
Public methodReadInt16
+
Public methodReadInt16
Reads a 16-bit signed integer from the current reader. -
Public methodReadInt32
+
Public methodReadInt32
Reads a 32-bit signed integer from the current reader. -
Public methodReadInt64
+
Public methodReadInt64
Reads a 64-bit signed integer from the current reader. -
Public methodReadRawBytes
+
Public methodReadRawBytes
public helper to read into a byte*, mainly used to read preallocated fixed size, non-integer types (Array, Guid, decimal etc) -
Public methodReadSByte
+
Public methodReadSByte
Reads a signed byte from the current reader and advances the current position of the reader by one byte. -
Public methodReadSingle
+
Public methodReadSingle
Reads a 32-bit floating point number from the current reader. -
Public methodReadSqlDateTime
+
Public methodReadSqlDateTime
Reads a value of SqlDateTime from the current reader. -
Public methodReadString
+
Public methodReadString
Reads a string value from the current reader. -
Public methodReadUByte
+
Public methodReadUByte
Reads a byte from the current reader and advances the current position of the reader by one byte. -
Public methodReadUInt16
+
Public methodReadUInt16
Reads a 16-bit unsigned integer from the current reader. -
Public methodReadUInt32
+
Public methodReadUInt32
Reads a 32-bit unsigned integer from the current reader. -
Public methodReadUInt64
+
Public methodReadUInt64
Reads a 64-bit unsigned integer from the current reader. -
Public methodToString
+
Public methodToString
Returns a string that represents this DryadLinqBinaryReader object. -
(Overrides Object ToString .)
Top
See Also

\ No newline at end of file +
(Overrides ObjectToString.)
Top
See Also

Reference

\ No newline at end of file diff --git a/html/0fe358e3-5219-60c4-1a15-c77bd51338f7.htm b/html/0fe358e3-5219-60c4-1a15-c77bd51338f7.htm index c295044..e84d5bb 100644 --- a/html/0fe358e3-5219-60c4-1a15-c77bd51338f7.htm +++ b/html/0fe358e3-5219-60c4-1a15-c77bd51338f7.htm @@ -1,52 +1,7 @@ -DryadLinqQueryable.AssumeHashPartition Method
DryadLinqQueryable AssumeHashPartition Method DryadLINQ documentation
Overload List

-   - NameDescription
Public methodStatic memberAssumeHashPartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  )
+DryadLinqQueryable.AssumeHashPartition Method
DryadLinqQueryableAssumeHashPartition Method DryadLINQ documentation
Overload List

+   + NameDescription
Public methodStatic memberAssumeHashPartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey)
Instruct DryadLINQ to assume that the dataset is hash partitioned. -
Public methodStatic memberAssumeHashPartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  , IEqualityComparer TKey )
+
Public methodStatic memberAssumeHashPartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey, IEqualityComparerTKey)
Instructs DryadLINQ to assume that the dataset is hash partitioned. -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/10c1f055-1b96-8c5a-c46d-b6171ae2f107.htm b/html/10c1f055-1b96-8c5a-c46d-b6171ae2f107.htm index 84cf5c4..8c10796 100644 --- a/html/10c1f055-1b96-8c5a-c46d-b6171ae2f107.htm +++ b/html/10c1f055-1b96-8c5a-c46d-b6171ae2f107.htm @@ -1,74 +1,14 @@ -DryadLinqQueryable.AverageAsQuery Method (IQueryable(Nullable(Decimal)))
DryadLinqQueryable AverageAsQuery Method (IQueryable Nullable Decimal  )DryadLINQ documentation
- Same as Average(IQueryable Nullable Decimal  ), but returns an IQueryable<Nullable<Decimal>> +DryadLinqQueryable.AverageAsQuery Method (IQueryable(Nullable(Decimal)))
DryadLinqQueryableAverageAsQuery Method (IQueryableNullableDecimal)DryadLINQ documentation

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static IQueryable<Nullable<decimal>> AverageAsQuery(
-	this IQueryable<Nullable<decimal>> source
-)

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static IQueryable<Nullable<decimal>> AverageAsQuery(
+	this IQueryable<Nullable<decimal>> source
+)

Parameters

source
Type: System.Linq IQueryable Nullable Decimal  
A set of nullable decimal values to calculate the average of

Return Value

Type: IQueryable Nullable Decimal  
The average of the values in the input dataset

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable Nullable Decimal  . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

\ No newline at end of file +)

Parameters

source
Type: System.LinqIQueryableNullableDecimal
A set of nullable decimal values to calculate the average of

Return Value

Type: IQueryableNullableDecimal
The average of the values in the input dataset

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableNullableDecimal. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference

\ No newline at end of file diff --git a/html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm b/html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm index 940f0c0..c9a22b6 100644 --- a/html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm +++ b/html/11c77de4-bb21-4879-6a37-daaf58adb3cf.htm @@ -1,45 +1,20 @@ -GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Class
GenericDecomposable TDecomposable, TSource, TAccumulate, TResult  ClassDryadLINQ documentation
+GenericDecomposable(TDecomposable, TSource, TAccumulate, TResult) Class
GenericDecomposableTDecomposable, TSource, TAccumulate, TResult ClassDryadLINQ documentation
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. -
Inheritance Hierarchy

System Object
  Microsoft.Research.DryadLinq GenericDecomposable TDecomposable, TSource, TAccumulate, TResult 

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static class GenericDecomposable<TDecomposable, TSource, TAccumulate, TResult>
-where TDecomposable : new(), Object, IDecomposable<TSource, TAccumulate, TResult>
Inheritance Hierarchy

SystemObject
  Microsoft.Research.DryadLinqGenericDecomposableTDecomposable, TSource, TAccumulate, TResult

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static class GenericDecomposable<TDecomposable, TSource, TAccumulate, TResult>
+where TDecomposable : new(), Object, IDecomposable<TSource, TAccumulate, TResult>
+
Type Parameters

TDecomposable
The type that implements the IDecomposable interface
TSource
The element type of the input sequence
TAccumulate
The element type of an intermediate result
TResult
The element type of the final result

The GenericDecomposable TDecomposable, TSource, TAccumulate, TResult  type exposes the following members.

Methods

-   - NameDescription
Public methodStatic memberAccumulate
+public ref class GenericDecomposable abstract sealed

Type Parameters

TDecomposable
The type that implements the IDecomposable interface
TSource
The element type of the input sequence
TAccumulate
The element type of an intermediate result
TResult
The element type of the final result

The GenericDecomposableTDecomposable, TSource, TAccumulate, TResult type exposes the following members.

Methods

+   + NameDescription
Public methodStatic memberAccumulate
Accumulates an input element into the accumulator value. -
Public methodStatic memberFinalReduce
+
Public methodStatic memberFinalReduce
Produces the final value from an accumulator value. -
Public methodStatic memberInitialize
+
Public methodStatic memberInitialize
Initializes the initial state of the IDecomposable object. -
Public methodStatic memberRecursiveAccumulate
+
Public methodStatic memberRecursiveAccumulate
Combines two accumulator values into one. -
Public methodStatic memberSeed
+
Public methodStatic memberSeed
Converts an input element to an intermediate accumulator value. -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/1286706e-b13a-d4da-31b6-a8e9095728c7.htm b/html/1286706e-b13a-d4da-31b6-a8e9095728c7.htm index 380b9fa..ee9f829 100644 --- a/html/1286706e-b13a-d4da-31b6-a8e9095728c7.htm +++ b/html/1286706e-b13a-d4da-31b6-a8e9095728c7.htm @@ -1,26 +1,15 @@ -DryadLinqJobInfo Class
DryadLinqJobInfo ClassDryadLINQ documentation
+DryadLinqJobInfo Class
DryadLinqJobInfo ClassDryadLINQ documentation
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. -
Inheritance Hierarchy

System Object
  Microsoft.Research.DryadLinq DryadLinqJobInfo

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public sealed class DryadLinqJobInfo

The DryadLinqJobInfo type exposes the following members.

Methods

-   - NameDescription
Public methodCancelJob
+
Inheritance Hierarchy

SystemObject
  Microsoft.Research.DryadLinqDryadLinqJobInfo

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public sealed class DryadLinqJobInfo

The DryadLinqJobInfo type exposes the following members.

Methods

+   + NameDescription
Public methodCancelJob
Cancels all the unfinished jobs. -
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWait
+
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWait
Blocks until all the DryadLINQ jobs terminate. -
Top
Properties

-   - NameDescription
Public propertyJobIds
+
Top
Properties

+   + NameDescription
Public propertyJobIds
Gets the job ids of the DryadLINQ jobs. -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/1361c8c8-c04b-e5f2-6112-9f62b5af8fcb.htm b/html/1361c8c8-c04b-e5f2-6112-9f62b5af8fcb.htm index fe5362f..2b44536 100644 --- a/html/1361c8c8-c04b-e5f2-6112-9f62b5af8fcb.htm +++ b/html/1361c8c8-c04b-e5f2-6112-9f62b5af8fcb.htm @@ -1,66 +1,17 @@ -DryadLinqQueryable.LongTakeWhile(TSource) Method
DryadLinqQueryable LongTakeWhile TSource  Method DryadLINQ documentation
+DryadLinqQueryable.LongTakeWhile(TSource) Method
DryadLinqQueryableLongTakeWhileTSource Method DryadLINQ documentation
Returns the largest prefix of a sequence such that the elements satisfy a specified predicate. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static IQueryable<TSource> LongTakeWhile<TSource>(
-	this IQueryable<TSource> source,
+            

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static IQueryable<TSource> LongTakeWhile<TSource>(
+	this IQueryable<TSource> source,
 	Expression<Func<TSource, long, bool>> predicate
-)

Parameters

source
Type: System.Linq IQueryable TSource 
The input sequence
predicate
Type: System.Linq.Expressions Expression Func TSource, Int64, Boolean  
A predicate to test each element for a condition
Type Parameters

TSource
The element type of the input sequence

Return Value

Type: IQueryable TSource 
The largest prefix satisfying the predicate

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable TSource . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

\ No newline at end of file +)

Parameters

source
Type: System.LinqIQueryableTSource
The input sequence
predicate
Type: System.Linq.ExpressionsExpressionFuncTSource, Int64, Boolean
A predicate to test each element for a condition

Type Parameters

TSource
The element type of the input sequence

Return Value

Type: IQueryableTSource
The largest prefix satisfying the predicate

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference

\ No newline at end of file diff --git a/html/13cce920-2cb3-0614-4d48-34257614f24f.htm b/html/13cce920-2cb3-0614-4d48-34257614f24f.htm index f7e0377..d00b218 100644 --- a/html/13cce920-2cb3-0614-4d48-34257614f24f.htm +++ b/html/13cce920-2cb3-0614-4d48-34257614f24f.htm @@ -1,15 +1,6 @@ -DryadLinqContext.Equals Method
DryadLinqContext Equals Method DryadLINQ documentation
Overload List

-   - NameDescription
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodEquals(DryadLinqContext)
+DryadLinqContext.Equals Method
DryadLinqContextEquals Method DryadLINQ documentation
Overload List

+   + NameDescription
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodEquals(DryadLinqContext)
Determines whether this instance of DryadLinqContext is equal to another instance - of DryadLinqContext. -
Top
See Also

\ No newline at end of file + of DryadLinqContext. +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/1418da77-2d3c-0a21-3c41-ba2ea3abb075.htm b/html/1418da77-2d3c-0a21-3c41-ba2ea3abb075.htm index d03edd3..15ea010 100644 --- a/html/1418da77-2d3c-0a21-3c41-ba2ea3abb075.htm +++ b/html/1418da77-2d3c-0a21-3c41-ba2ea3abb075.htm @@ -1,22 +1,4 @@ -ForkValue(T).GetHashCode Method
ForkValue T  GetHashCode Method DryadLINQ documentation
+ForkValue(T).GetHashCode Method
ForkValueTGetHashCode Method DryadLINQ documentation
Gets the hash code of this instance of ForkValue. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public override int GetHashCode()

Return Value

Type: Int32
An integer hash code
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public override int GetHashCode()

Return Value

Type: Int32
An integer hash code
See Also

Reference

\ No newline at end of file diff --git a/html/1440c40e-9c6b-fafe-9688-112547bd19f3.htm b/html/1440c40e-9c6b-fafe-9688-112547bd19f3.htm index ee63673..65dbdae 100644 --- a/html/1440c40e-9c6b-fafe-9688-112547bd19f3.htm +++ b/html/1440c40e-9c6b-fafe-9688-112547bd19f3.htm @@ -1,28 +1,10 @@ -DryadLinqBinaryWriter.Write Method (String)
DryadLinqBinaryWriter Write Method (String)DryadLINQ documentation
+DryadLinqBinaryWriter.Write Method (String)
DryadLinqBinaryWriterWrite Method (String)DryadLINQ documentation
Writes a string to the current writer. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public void Write(
-	string val
-)

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public void Write(
+	string val
+)
See Also

\ No newline at end of file +)

Parameters

val
Type: SystemString
The string to write.
See Also

Reference

\ No newline at end of file diff --git a/html/14426d10-5679-395b-3954-e340a465128a.htm b/html/14426d10-5679-395b-3954-e340a465128a.htm index f11371c..6f7837a 100644 --- a/html/14426d10-5679-395b-3954-e340a465128a.htm +++ b/html/14426d10-5679-395b-3954-e340a465128a.htm @@ -1,14 +1,4 @@ -DryadLinqBinaryReader.ReadUInt16 Method
DryadLinqBinaryReader ReadUInt16 Method DryadLINQ documentation
+DryadLinqBinaryReader.ReadUInt16 Method
DryadLinqBinaryReaderReadUInt16 Method DryadLINQ documentation
Reads a 16-bit unsigned integer from the current reader. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public ushort ReadUInt16()

Return Value

Type: UInt16
A 16-bit unsigned integer.
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public ushort ReadUInt16()

Return Value

Type: UInt16
A 16-bit unsigned integer.
See Also

Reference

\ No newline at end of file diff --git a/html/1516e01c-7658-2623-7a8f-ee4df625d7f6.htm b/html/1516e01c-7658-2623-7a8f-ee4df625d7f6.htm index e46bd6c..b8b96c3 100644 --- a/html/1516e01c-7658-2623-7a8f-ee4df625d7f6.htm +++ b/html/1516e01c-7658-2623-7a8f-ee4df625d7f6.htm @@ -1,38 +1,13 @@ -Pair(T1, T2) Constructor
Pair T1, T2  Constructor DryadLINQ documentation
+Pair(T1, T2) Constructor
PairT1, T2 Constructor DryadLINQ documentation
Initializes an instance of this key-value Pair structure. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public Pair(
+            

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public Pair(
 	T1 x,
 	T2 y
-)

Parameters

x
Type: T1
The key of the pair.
y
Type: T2
The value of the pair.
See Also

\ No newline at end of file +)

Parameters

x
Type: T1
The key of the pair.
y
Type: T2
The value of the pair.
See Also

Reference

\ No newline at end of file diff --git a/html/154a0be2-f541-8bea-52fc-3e187bd8e65f.htm b/html/154a0be2-f541-8bea-52fc-3e187bd8e65f.htm index 25fc845..ebc9dbe 100644 --- a/html/154a0be2-f541-8bea-52fc-3e187bd8e65f.htm +++ b/html/154a0be2-f541-8bea-52fc-3e187bd8e65f.htm @@ -1,14 +1,4 @@ -DryadLinqBinaryReader.ReadInt32 Method
DryadLinqBinaryReader ReadInt32 Method DryadLINQ documentation
+DryadLinqBinaryReader.ReadInt32 Method
DryadLinqBinaryReaderReadInt32 Method DryadLINQ documentation
Reads a 32-bit signed integer from the current reader. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public int ReadInt32()

Return Value

Type: Int32
A 32-bit signed integer.
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public int ReadInt32()

Return Value

Type: Int32
A 32-bit signed integer.
See Also

Reference

\ No newline at end of file diff --git a/html/1576a427-e89d-6a22-37c1-96d064b3065a.htm b/html/1576a427-e89d-6a22-37c1-96d064b3065a.htm index fae1519..41ca52a 100644 --- a/html/1576a427-e89d-6a22-37c1-96d064b3065a.htm +++ b/html/1576a427-e89d-6a22-37c1-96d064b3065a.htm @@ -1,10 +1,3 @@ -NullableAttribute Methods
NullableAttribute MethodsDryadLINQ documentation

The NullableAttribute type exposes the following members.

Methods

-   - NameDescription
Public methodEquals
Returns a value that indicates whether this instance is equal to a specified object.
(Inherited from Attribute.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from Attribute.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsDefaultAttribute
When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Inherited from Attribute.)
Public methodMatch
When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Inherited from Attribute.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also

\ No newline at end of file +NullableAttribute Methods
NullableAttribute MethodsDryadLINQ documentation

The NullableAttribute type exposes the following members.

Methods

+   + NameDescription
Public methodEquals
Returns a value that indicates whether this instance is equal to a specified object.
(Inherited from Attribute.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from Attribute.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsDefaultAttribute
When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Inherited from Attribute.)
Public methodMatch
When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Inherited from Attribute.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also

Reference

\ No newline at end of file diff --git a/html/15ad8a07-5fcb-f3d7-1bb6-efd8cc647046.htm b/html/15ad8a07-5fcb-f3d7-1bb6-efd8cc647046.htm index 7837282..af814ef 100644 --- a/html/15ad8a07-5fcb-f3d7-1bb6-efd8cc647046.htm +++ b/html/15ad8a07-5fcb-f3d7-1bb6-efd8cc647046.htm @@ -1,28 +1,10 @@ -DryadLinqBinaryWriter.Write Method (UInt16)
DryadLinqBinaryWriter Write Method (UInt16)DryadLINQ documentation
+DryadLinqBinaryWriter.Write Method (UInt16)
DryadLinqBinaryWriterWrite Method (UInt16)DryadLINQ documentation
Writes an unsigned 16-bit integer to the current writer. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public void Write(
-	ushort val
-)

Parameters

val
Type: System UInt16
The unsigned 16-bit integer to be written.
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public void Write(
+	ushort val
+)

Parameters

val
Type: SystemUInt16
The unsigned 16-bit integer to be written.
See Also

Reference

\ No newline at end of file diff --git a/html/15c1c542-c2b5-4b49-86c9-d939b43ae22e.htm b/html/15c1c542-c2b5-4b49-86c9-d939b43ae22e.htm index cd6adac..79a0c46 100644 --- a/html/15c1c542-c2b5-4b49-86c9-d939b43ae22e.htm +++ b/html/15c1c542-c2b5-4b49-86c9-d939b43ae22e.htm @@ -1,38 +1,10 @@ -IKeyedMultiQueryable(T, K).Item Property
IKeyedMultiQueryable T, K  Item Property DryadLINQ documentation
+IKeyedMultiQueryable(T, K).Item Property
IKeyedMultiQueryableT, KItem Property DryadLINQ documentation
Gets the IQueryable{T} associated with a specified key. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

IQueryable<T> this[
+            

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

IQueryable<T> this[
 	K key
-] { get; }

Parameters

key
Type: K
A key

Return Value

Type: IQueryable T 
The IQueryable{T} associated with the key
See Also

\ No newline at end of file +}

Parameters

key
Type: K
A key

Return Value

Type: IQueryableT
The IQueryable{T} associated with the key
See Also

Reference

\ No newline at end of file diff --git a/html/1634cb40-8440-9f89-4255-84fa32a3ba65.htm b/html/1634cb40-8440-9f89-4255-84fa32a3ba65.htm index 5b2fdb6..f0f3957 100644 --- a/html/1634cb40-8440-9f89-4255-84fa32a3ba65.htm +++ b/html/1634cb40-8440-9f89-4255-84fa32a3ba65.htm @@ -1,10 +1,3 @@ -DecomposableAttribute Methods
DecomposableAttribute MethodsDryadLINQ documentation

The DecomposableAttribute type exposes the following members.

Methods

-   - NameDescription
Public methodEquals
Returns a value that indicates whether this instance is equal to a specified object.
(Inherited from Attribute.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from Attribute.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsDefaultAttribute
When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Inherited from Attribute.)
Public methodMatch
When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Inherited from Attribute.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also

\ No newline at end of file +DecomposableAttribute Methods
DecomposableAttribute MethodsDryadLINQ documentation

The DecomposableAttribute type exposes the following members.

Methods

+   + NameDescription
Public methodEquals
Returns a value that indicates whether this instance is equal to a specified object.
(Inherited from Attribute.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from Attribute.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsDefaultAttribute
When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Inherited from Attribute.)
Public methodMatch
When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Inherited from Attribute.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also

Reference

\ No newline at end of file diff --git a/html/16daaf7e-3114-85a5-746f-9b39bda27cb9.htm b/html/16daaf7e-3114-85a5-746f-9b39bda27cb9.htm index ff91877..4a8c0a8 100644 --- a/html/16daaf7e-3114-85a5-746f-9b39bda27cb9.htm +++ b/html/16daaf7e-3114-85a5-746f-9b39bda27cb9.htm @@ -1,18 +1,11 @@ -LineRecord Operators
LineRecord OperatorsDryadLINQ documentation

The LineRecord type exposes the following members.

Operators

-   - NameDescription
Public operatorStatic memberEquality
+LineRecord Operators
LineRecord OperatorsDryadLINQ documentation

The LineRecord type exposes the following members.

Operators

+   + NameDescription
Public operatorStatic memberEquality
Determines whether two specified LineRecords are equal. -
Public operatorStatic memberGreaterThan
+
Public operatorStatic memberGreaterThan
Returns true iff a LineRecord is greater than another LineRecord. -
Public operatorStatic memberInequality
+
Public operatorStatic memberInequality
Determines whether two specified LineRecords are not equal. -
Public operatorStatic memberLessThan
+
Public operatorStatic memberLessThan
Returns true iff a LineRecord is less than another LineRecord. -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/17d622f1-6799-aeab-3637-9d66a4d79f0b.htm b/html/17d622f1-6799-aeab-3637-9d66a4d79f0b.htm index de2b846..13b821d 100644 --- a/html/17d622f1-6799-aeab-3637-9d66a4d79f0b.htm +++ b/html/17d622f1-6799-aeab-3637-9d66a4d79f0b.htm @@ -1,36 +1,13 @@ -DryadLinqContext.RegisterAzureAccount Method
DryadLinqContext RegisterAzureAccount Method DryadLINQ documentation
+DryadLinqContext.RegisterAzureAccount Method
DryadLinqContextRegisterAzureAccount Method DryadLINQ documentation
Register a named account with the specified storage key, so that key won't need to be specified in Azure blob URIs -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public void RegisterAzureAccount(
-	string storageAccountName,
-	string storageAccountKey
-)

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public void RegisterAzureAccount(
+	string storageAccountName,
+	string storageAccountKey
+)
See Also

\ No newline at end of file +)

Parameters

storageAccountName
Type: SystemString
The name of the storage account
storageAccountKey
Type: SystemString
The account's key
See Also

Reference

\ No newline at end of file diff --git a/html/17d9d840-e581-26d0-9aaf-16ca5687adda.htm b/html/17d9d840-e581-26d0-9aaf-16ca5687adda.htm index 7173959..d02096f 100644 --- a/html/17d9d840-e581-26d0-9aaf-16ca5687adda.htm +++ b/html/17d9d840-e581-26d0-9aaf-16ca5687adda.htm @@ -1,26 +1,11 @@ -DryadLinqContext.SelectOrderPreserving Property
DryadLinqContext SelectOrderPreserving Property DryadLINQ documentation
+DryadLinqContext.SelectOrderPreserving Property
DryadLinqContextSelectOrderPreserving Property DryadLINQ documentation
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. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public bool SelectOrderPreserving { get; set; }

Property Value

Type: Boolean
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public bool SelectOrderPreserving { get; set; }

Property Value

Type: Boolean
See Also

Reference

\ No newline at end of file diff --git a/html/1842f60d-35dc-a934-cc36-dfa0cba934e1.htm b/html/1842f60d-35dc-a934-cc36-dfa0cba934e1.htm index 7c66850..b822f3c 100644 --- a/html/1842f60d-35dc-a934-cc36-dfa0cba934e1.htm +++ b/html/1842f60d-35dc-a934-cc36-dfa0cba934e1.htm @@ -1,28 +1,14 @@ -CustomDryadLinqSerializerAttribute Class
CustomDryadLinqSerializerAttribute ClassDryadLINQ documentation
+CustomDryadLinqSerializerAttribute Class
CustomDryadLinqSerializerAttribute ClassDryadLINQ documentation
Provides a user-defined serialization method for a .NET type. -
Inheritance Hierarchy

System Object
  System Attribute
    Microsoft.Research.DryadLinq CustomDryadLinqSerializerAttribute

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public sealed class CustomDryadLinqSerializerAttribute : Attribute

The CustomDryadLinqSerializerAttribute type exposes the following members.

Constructors

-   - NameDescription
Public methodCustomDryadLinqSerializerAttribute
+
Inheritance Hierarchy

SystemObject
  SystemAttribute
    Microsoft.Research.DryadLinqCustomDryadLinqSerializerAttribute

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public sealed class CustomDryadLinqSerializerAttribute : Attribute

The CustomDryadLinqSerializerAttribute type exposes the following members.

Constructors

+   + NameDescription
Public methodCustomDryadLinqSerializerAttribute
Initializes an instance of CustomDryadLinqSerializer attribute. -
Top
Methods

-   - NameDescription
Public methodEquals
Returns a value that indicates whether this instance is equal to a specified object.
(Inherited from Attribute.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from Attribute.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsDefaultAttribute
When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Inherited from Attribute.)
Public methodMatch
When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Inherited from Attribute.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties

-   - NameDescription
Public propertySerializerType
+
Top
Methods

+   + NameDescription
Public methodEquals
Returns a value that indicates whether this instance is equal to a specified object.
(Inherited from Attribute.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from Attribute.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsDefaultAttribute
When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Inherited from Attribute.)
Public methodMatch
When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Inherited from Attribute.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties

+   + NameDescription
Public propertySerializerType
Gets and sets the type object for serialization. -
Public propertyTypeId
When implemented in a derived class, gets a unique identifier for this Attribute.
(Inherited from Attribute.)
Top
See Also

\ No newline at end of file +
Public propertyTypeId
When implemented in a derived class, gets a unique identifier for this Attribute.
(Inherited from Attribute.)
Top
See Also

Reference

\ No newline at end of file diff --git a/html/185c1846-bd97-af24-9a74-6b5679232636.htm b/html/185c1846-bd97-af24-9a74-6b5679232636.htm index 2f115e3..093b966 100644 --- a/html/185c1846-bd97-af24-9a74-6b5679232636.htm +++ b/html/185c1846-bd97-af24-9a74-6b5679232636.htm @@ -1,14 +1,4 @@ -DryadLinqLog.Level Field
DryadLinqLog Level FieldDryadLINQ documentation
+DryadLinqLog.Level Field
DryadLinqLogLevel FieldDryadLINQ documentation
Gets and sets the logging level of DryadLINQ. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static int Level

Field Value

Type: Int32
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static int Level

Field Value

Type: Int32
See Also

Reference

\ No newline at end of file diff --git a/html/188cfe0e-30ad-5808-ecf3-69159ca7250f.htm b/html/188cfe0e-30ad-5808-ecf3-69159ca7250f.htm index 14154f8..84ca2d6 100644 --- a/html/188cfe0e-30ad-5808-ecf3-69159ca7250f.htm +++ b/html/188cfe0e-30ad-5808-ecf3-69159ca7250f.htm @@ -1,27 +1,11 @@ -CustomDryadLinqSerializerAttribute Constructor
CustomDryadLinqSerializerAttribute Constructor DryadLINQ documentation
+CustomDryadLinqSerializerAttribute Constructor
CustomDryadLinqSerializerAttribute Constructor DryadLINQ documentation
Initializes an instance of CustomDryadLinqSerializer attribute. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public CustomDryadLinqSerializerAttribute(
-	Type serializerType
-)

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public CustomDryadLinqSerializerAttribute(
+	Type serializerType
+)

Parameters

serializerType
Type: System Type
A type that implements IDryadLinqSerializer{T}, where T - is the .NET type to be serialized.
See Also

\ No newline at end of file +)

Parameters

serializerType
Type: SystemType
A type that implements IDryadLinqSerializer{T}, where T + is the .NET type to be serialized.
See Also

Reference

\ No newline at end of file diff --git a/html/1a3367ed-b951-d562-fbbc-4da581fb22ff.htm b/html/1a3367ed-b951-d562-fbbc-4da581fb22ff.htm index 62f28dd..8d32c11 100644 --- a/html/1a3367ed-b951-d562-fbbc-4da581fb22ff.htm +++ b/html/1a3367ed-b951-d562-fbbc-4da581fb22ff.htm @@ -1,24 +1,9 @@ -DryadLinqContext.DryadHomeDirectory Property
DryadLinqContext DryadHomeDirectory Property DryadLINQ documentation
+DryadLinqContext.DryadHomeDirectory Property
DryadLinqContextDryadHomeDirectory Property DryadLINQ documentation
Gets or sets the bin directory for Dryad. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public string DryadHomeDirectory { get; set; }

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public string DryadHomeDirectory { get; set; }

Property Value

Type: String
See Also

\ No newline at end of file + void set (String^ value); +}

Property Value

Type: String
See Also

Reference

\ No newline at end of file diff --git a/html/1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89.htm b/html/1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89.htm index 8eb8fb5..6b7ec13 100644 --- a/html/1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89.htm +++ b/html/1a74f3d6-9e33-6ea7-b3c2-2bf6ecbc5d89.htm @@ -1,23 +1,16 @@ -IMultiQueryable Interface
IMultiQueryable InterfaceDryadLINQ documentation
+IMultiQueryable Interface
IMultiQueryable InterfaceDryadLINQ documentation
The base interface to access a collection of IQueryable instances. The DryadLINQ Fork operator returns a value that implements this interface. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public interface IMultiQueryable

The IMultiQueryable type exposes the following members.

Methods

-   - NameDescription
Public methodElementType
+

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public interface IMultiQueryable

The IMultiQueryable type exposes the following members.

Methods

+   + NameDescription
Public methodElementType
Gets the element type of the query at a specified index. -
Top
Properties

-   - NameDescription
Public propertyExpression
+
Top
Properties

+   + NameDescription
Public propertyExpression
Gets the expression tree that is associated with this instance of IMultiQueryable -
Public propertyNumberOfInputs
+
Public propertyNumberOfInputs
Gets the number of queries in this instance of IMultiQueryable -
Public propertyProvider
+
Public propertyProvider
Gets the query provider that is associated with this instance of IMultiQueryable -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/1ada303f-80bd-0b5c-656e-d984ddee2d16.htm b/html/1ada303f-80bd-0b5c-656e-d984ddee2d16.htm index 7388fe2..9b78ea1 100644 --- a/html/1ada303f-80bd-0b5c-656e-d984ddee2d16.htm +++ b/html/1ada303f-80bd-0b5c-656e-d984ddee2d16.htm @@ -1,112 +1,19 @@ -DryadLinqQueryable.SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Int32))))
DryadLinqQueryable SumAsQuery TSource  Method (IQueryable TSource , Expression Func TSource, Nullable Int32   )DryadLINQ documentation
- Same as Sum TSource (IQueryable TSource , Expression Func TSource, Nullable Int32   ), but returns an IQueryable<Nullable<Int32>> +DryadLinqQueryable.SumAsQuery(TSource) Method (IQueryable(TSource), Expression(Func(TSource, Nullable(Int32))))
DryadLinqQueryableSumAsQueryTSource Method (IQueryableTSource, ExpressionFuncTSource, NullableInt32)DryadLINQ documentation

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static IQueryable<Nullable<int>> SumAsQuery<TSource>(
-	this IQueryable<TSource> source,
+            

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static IQueryable<Nullable<int>> SumAsQuery<TSource>(
+	this IQueryable<TSource> source,
 	Expression<Func<TSource, Nullable<int>>> selector
-)

Parameters

source
Type: System.Linq IQueryable TSource 
The input dataset
selector
Type: System.Linq.Expressions Expression Func TSource, Nullable Int32   
A transformation function to apply to each element
Type Parameters

TSource
The type of the elements of source

Return Value

Type: IQueryable Nullable Int32  
The sum of the values after applying the transformation function

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable TSource . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

\ No newline at end of file +)

Parameters

source
Type: System.LinqIQueryableTSource
The input dataset
selector
Type: System.Linq.ExpressionsExpressionFuncTSource, NullableInt32
A transformation function to apply to each element

Type Parameters

TSource
The type of the elements of source

Return Value

Type: IQueryableNullableInt32
The sum of the values after applying the transformation function

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference

\ No newline at end of file diff --git a/html/1b00f0ed-5c36-e0bc-b09e-225e2e7de9b0.htm b/html/1b00f0ed-5c36-e0bc-b09e-225e2e7de9b0.htm index c850201..5952f09 100644 --- a/html/1b00f0ed-5c36-e0bc-b09e-225e2e7de9b0.htm +++ b/html/1b00f0ed-5c36-e0bc-b09e-225e2e7de9b0.htm @@ -1,54 +1,14 @@ -DryadLinqQueryable.AverageAsQuery Method (IQueryable(Int64))
DryadLinqQueryable AverageAsQuery Method (IQueryable Int64 )DryadLINQ documentation
- Same as Average(IQueryable Int64 ), but returns an IQueryable<Double> +DryadLinqQueryable.AverageAsQuery Method (IQueryable(Int64))
DryadLinqQueryableAverageAsQuery Method (IQueryableInt64)DryadLINQ documentation

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static IQueryable<double> AverageAsQuery(
-	this IQueryable<long> source
-)

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static IQueryable<double> AverageAsQuery(
+	this IQueryable<long> source
+)

Parameters

source
Type: System.Linq IQueryable Int64 
A set of Int64 values to calculate the average of

Return Value

Type: IQueryable Double 
The average of the values in the input dataset

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable Int64 . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

\ No newline at end of file +)

Parameters

source
Type: System.LinqIQueryableInt64
A set of Int64 values to calculate the average of

Return Value

Type: IQueryableDouble
The average of the values in the input dataset

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryableInt64. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference

\ No newline at end of file diff --git a/html/1b0a7d22-63b3-062c-d1e8-dfaccece9749.htm b/html/1b0a7d22-63b3-062c-d1e8-dfaccece9749.htm index e26ee6d..74b11d4 100644 --- a/html/1b0a7d22-63b3-062c-d1e8-dfaccece9749.htm +++ b/html/1b0a7d22-63b3-062c-d1e8-dfaccece9749.htm @@ -1,28 +1,10 @@ -DryadLinqBinaryWriter.Write Method (Char)
DryadLinqBinaryWriter Write Method (Char)DryadLINQ documentation
+DryadLinqBinaryWriter.Write Method (Char)
DryadLinqBinaryWriterWrite Method (Char)DryadLINQ documentation
Writes a character to the current writer. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public void Write(
-	char ch
-)
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public void Write(
+	char ch
+)

Parameters

ch
Type: SystemChar
The character to be written.
See Also

Reference

\ No newline at end of file diff --git a/html/1b4bb2db-3cb5-2bb3-22b7-d0d1f24eb7a6.htm b/html/1b4bb2db-3cb5-2bb3-22b7-d0d1f24eb7a6.htm index 6880e90..07db868 100644 --- a/html/1b4bb2db-3cb5-2bb3-22b7-d0d1f24eb7a6.htm +++ b/html/1b4bb2db-3cb5-2bb3-22b7-d0d1f24eb7a6.htm @@ -1,26 +1,11 @@ -DryadLinqContext.OutputDataCompressionScheme Property
DryadLinqContext OutputDataCompressionScheme Property DryadLINQ documentation
+DryadLinqContext.OutputDataCompressionScheme Property
DryadLinqContextOutputDataCompressionScheme Property DryadLINQ documentation
Gets or sets the value specifying the compression scheme for output data. -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public CompressionScheme OutputDataCompressionScheme { get; set; }

Property Value

Type: CompressionScheme
Remarks

- The default is None. -
See Also

\ No newline at end of file +

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public CompressionScheme OutputDataCompressionScheme { get; set; }

Property Value

Type: CompressionScheme
Remarks

+ The default is None. +
See Also

Reference

\ No newline at end of file diff --git a/html/1b4e9327-9b61-e353-0051-d36bb399ce3e.htm b/html/1b4e9327-9b61-e353-0051-d36bb399ce3e.htm index 90f5bf1..5d09559 100644 --- a/html/1b4e9327-9b61-e353-0051-d36bb399ce3e.htm +++ b/html/1b4e9327-9b61-e353-0051-d36bb399ce3e.htm @@ -1,572 +1,83 @@ -DryadLinqQueryable.AverageAsQuery Method
DryadLinqQueryable AverageAsQuery Method DryadLINQ documentation
Overload List

-   - NameDescription
Public methodStatic memberAverageAsQuery(IQueryable Decimal )
- Same as Average(IQueryable Decimal ), but returns an IQueryable<Decimal> +DryadLinqQueryable.AverageAsQuery Method
DryadLinqQueryableAverageAsQuery Method DryadLINQ documentation
Overload List

+   + NameDescription
Public methodStatic memberAverageAsQuery(IQueryableDecimal)
Public methodStatic memberAverageAsQuery(IQueryable Double )
Public methodStatic memberAverageAsQuery(IQueryableDouble)
Public methodStatic memberAverageAsQuery(IQueryable Int32 )
Public methodStatic memberAverageAsQuery(IQueryableInt32)
Public methodStatic memberAverageAsQuery(IQueryable Int64 )
Public methodStatic memberAverageAsQuery(IQueryableInt64)
Public methodStatic memberAverageAsQuery(IQueryable Nullable Decimal  )
Public methodStatic memberAverageAsQuery(IQueryableNullableDecimal)
Public methodStatic memberAverageAsQuery(IQueryable Nullable Double  )
Public methodStatic memberAverageAsQuery(IQueryableNullableDouble)
Public methodStatic memberAverageAsQuery(IQueryable Nullable Int32  )
Public methodStatic memberAverageAsQuery(IQueryableNullableInt32)
Public methodStatic memberAverageAsQuery(IQueryable Nullable Int64  )
Public methodStatic memberAverageAsQuery(IQueryableNullableInt64)
Public methodStatic memberAverageAsQuery(IQueryable Nullable Single  )
Public methodStatic memberAverageAsQuery(IQueryableNullableSingle)
Public methodStatic memberAverageAsQuery(IQueryable Single )
Public methodStatic memberAverageAsQuery(IQueryableSingle)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Decimal  )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Decimal)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Double  )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Double)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Int32  )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Int32)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Int64  )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Int64)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Decimal   )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableDecimal)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Double   )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableDouble)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Int32   )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableInt32)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Int64   )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableInt64)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Single   )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableSingle)
Public methodStatic memberAverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Single  )
Public methodStatic memberAverageAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Single)
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/1ba7bd47-27c9-8c6f-b5fb-54fdfb0b382a.htm b/html/1ba7bd47-27c9-8c6f-b5fb-54fdfb0b382a.htm index ed31fc0..1e0334a 100644 --- a/html/1ba7bd47-27c9-8c6f-b5fb-54fdfb0b382a.htm +++ b/html/1ba7bd47-27c9-8c6f-b5fb-54fdfb0b382a.htm @@ -1,60 +1,49 @@ -DryadLinqBinaryWriter Methods
DryadLinqBinaryWriter MethodsDryadLINQ documentation

The DryadLinqBinaryWriter type exposes the following members.

Methods

-   - NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
+DryadLinqBinaryWriter Methods
DryadLinqBinaryWriter MethodsDryadLINQ documentation

The DryadLinqBinaryWriter type exposes the following members.

Methods

+   + NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current DryadLinqBinaryWriter object. -
(Overrides Object ToString .)
Public methodWrite(Boolean)
+
(Overrides ObjectToString.)
Public methodWrite(Boolean)
Writes a boolean value to the current writer. -
Public methodWrite(Byte)
+
Public methodWrite(Byte)
Writes an unsigned byte to the current writer. -
Public methodWrite(Char)
+
Public methodWrite(Char)
Writes a character to the current writer. -
Public methodWrite(SqlDateTime)
+
Public methodWrite(SqlDateTime)
Writes a value of SqlDateTime to the current writer. -
Public methodWrite(DateTime)
+
Public methodWrite(DateTime)
Writes a value of DateTime to the current writer. -
Public methodWrite(Decimal)
+
Public methodWrite(Decimal)
Writes a decimal number to the current writer. -
Public methodWrite(Double)
+
Public methodWrite(Double)
Writes a 64-bit floating point number to the current writer. -
Public methodWrite(Guid)
+
Public methodWrite(Guid)
Writes a value of Guid to the current writer. -
Public methodWrite(Int16)
+
Public methodWrite(Int16)
Writes a signed 16-bit integer to the current writer. -
Public methodWrite(Int32)
+
Public methodWrite(Int32)
Writes a signed 32-bit integer to the current writer. -
Public methodWrite(Int64)
+
Public methodWrite(Int64)
Writes a signed 64-bit integer to the current writer. -
Public methodWrite(SByte)
+
Public methodWrite(SByte)
Writes a signed byte to the current writer. -
Public methodWrite(Single)
+
Public methodWrite(Single)
Writes a 32-bit floating point number to the current writer. -
Public methodWrite(String)
+
Public methodWrite(String)
Writes a string to the current writer. -
Public methodWrite(UInt16)
+
Public methodWrite(UInt16)
Writes an unsigned 16-bit integer to the current writer. -
Public methodWrite(UInt32)
+
Public methodWrite(UInt32)
writes an unsigned 32-bit integer to the current writer. -
Public methodWrite(UInt64)
+
Public methodWrite(UInt64)
Writes a unsigned 64-bit integer to the current writer. -
Public methodWriteBytes
+
Public methodWriteBytes
Writes an array of bytes to the current writer. -
Public methodWriteChars
+
Public methodWriteChars
Writes an array of characters to the current writer. -
Public methodWriteCompact
+
Public methodWriteCompact
Writes a 32-bit signed integer to the current writer. The integer is written in a compact format. -
Public methodWriteRawBytes
+
Public methodWriteRawBytes
Public helper to write from a caller provided byte* to the output stream. This is mainly used to read preallocated fixed size, non-integer types (Guid, decimal etc). -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/1c211df7-7ad1-840b-c9e5-09655a6b3714.htm b/html/1c211df7-7ad1-840b-c9e5-09655a6b3714.htm index ae8580a..4d3db5e 100644 --- a/html/1c211df7-7ad1-840b-c9e5-09655a6b3714.htm +++ b/html/1c211df7-7ad1-840b-c9e5-09655a6b3714.htm @@ -1,39 +1,13 @@ -DryadLinqQueryable.SubmitAndWait Method (IQueryable[])
DryadLinqQueryable SubmitAndWait Method ( IQueryable )DryadLINQ documentation
+DryadLinqQueryable.SubmitAndWait Method (IQueryable[])
DryadLinqQueryableSubmitAndWait Method (IQueryable)DryadLINQ documentation
Submits a list of DryadLinq queries for execution and waits for the job to complete -

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax

public static DryadLinqJobInfo SubmitAndWait(
-	params IQueryable[] sources
-)

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public static DryadLinqJobInfo SubmitAndWait(
+	params IQueryable[] sources
+)

Parameters

sources
Type:  System.Linq IQueryable 
A set of DryadLINQ queries to execute

Return Value

Type: DryadLinqJobInfo
Information about the job being submitted for execution.
Exceptions

ExceptionCondition
DryadLinqExceptionIf the job completes in error or is cancelled.
DryadLinqExceptionIf repeated errors occur while polling for status.
Remarks

+)

Parameters

sources
Type: System.LinqIQueryable
A set of DryadLINQ queries to execute

Return Value

Type: DryadLinqJobInfo
Information about the job being submitted for execution.
Exceptions

ExceptionCondition
DryadLinqExceptionIf the job completes in error or is cancelled.
DryadLinqExceptionIf repeated errors occur while polling for status.
Remarks

Every item in sources must be an DryadLinq IQueryable object that terminates with ToStore() Only one job will be executed, but the job will produce the output associated with each item in sources. -
See Also

\ No newline at end of file +
See Also

Reference

\ No newline at end of file diff --git a/html/1d3ec0f6-3549-a859-323d-eaa072b59745.htm b/html/1d3ec0f6-3549-a859-323d-eaa072b59745.htm index 3d87948..31cc108 100644 --- a/html/1d3ec0f6-3549-a859-323d-eaa072b59745.htm +++ b/html/1d3ec0f6-3549-a859-323d-eaa072b59745.htm @@ -1,152 +1,19 @@ -DryadLinqQueryable.HashPartition Method
DryadLinqQueryable HashPartition Method DryadLINQ documentation
Overload List

-   - NameDescription
Public methodStatic memberHashPartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  )
+DryadLinqQueryable.HashPartition Method
DryadLinqQueryableHashPartition Method DryadLINQ documentation
Overload List

+   + NameDescription
Public methodStatic memberHashPartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey)
Hash partition a dataset. The number of resulting partitions is dynamically determined at the runtime. -
Public methodStatic memberHashPartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  , IEqualityComparer TKey )
+
Public methodStatic memberHashPartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey, IEqualityComparerTKey)
Hash partition a dataset. The number of resulting partitions is dynamically determined at the runtime. -
Public methodStatic memberHashPartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  , Int32)
+
Public methodStatic memberHashPartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey, Int32)
Hash partition a dataset. -
Public methodStatic memberHashPartition TSource, TKey, TResult (IQueryable TSource , Expression Func TSource, TKey  , Expression Func TSource, TResult  )
+
Public methodStatic memberHashPartitionTSource, TKey, TResult(IQueryableTSource, ExpressionFuncTSource, TKey, ExpressionFuncTSource, TResult)
Hash partition a dataset. The number of resulting partitions is dynamically determined at the runtime. -
Public methodStatic memberHashPartition TSource, TKey (IQueryable TSource , Expression Func TSource, TKey  , IEqualityComparer TKey , Int32)
+
Public methodStatic memberHashPartitionTSource, TKey(IQueryableTSource, ExpressionFuncTSource, TKey, IEqualityComparerTKey, Int32)
Hash partition a dataset. -
Public methodStatic memberHashPartition TSource, TKey, TResult (IQueryable TSource , Expression Func TSource, TKey  , IEqualityComparer TKey , Expression Func TSource, TResult  )
+
Public methodStatic memberHashPartitionTSource, TKey, TResult(IQueryableTSource, ExpressionFuncTSource, TKey, IEqualityComparerTKey, ExpressionFuncTSource, TResult)
Hash partition a dataset. The number of resulting partitions is dynamically determined at the runtime. -
Top
See Also

\ No newline at end of file +
Top
See Also

Reference

\ No newline at end of file diff --git a/html/1ef96122-dbe3-4815-a81f-7b5a72bf9f4f.htm b/html/1ef96122-dbe3-4815-a81f-7b5a72bf9f4f.htm index 8fd7f19..2f4c938 100644 --- a/html/1ef96122-dbe3-4815-a81f-7b5a72bf9f4f.htm +++ b/html/1ef96122-dbe3-4815-a81f-7b5a72bf9f4f.htm @@ -1,8 +1 @@ -Resources
ResourcesDryadLINQ documentation

These topics give more information about DryadLinq.

Getting Started Topics

\ No newline at end of file +Resources
ResourcesDryadLINQ documentation

These topics give more information about DryadLinq.

Getting Started Topics