C# 클래스 DotNetWorkQueue.Messages.LinqExpressionToRun

Defines a method to be executed; the linq expression will be compiled when consumed.
The caller must explicitly specify DLL references and using statements.
파일 보기 프로젝트 열기: blehnen/DotNetWorkQueue 1 사용 예제들

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

Determines whether the specified System.Object, is equal to this instance.

GetHashCode ( ) : int

Returns a hash code for this instance.

LinqExpressionToRun ( string linq, IReadOnlyList references = null, IReadOnlyList usings = null, bool unique = false ) : System.Collections.Generic

Initializes a new instance of the LinqExpressionToRun class.

보호된 메소드들

메소드 설명
CalculateHashCode ( ) : int

Calculates the hash code.

LinqExpressionToRun ( ) : System.Collections.Generic

Initializes a new instance of the LinqExpressionToRun class.

메소드 상세

CalculateHashCode() 보호된 메소드

Calculates the hash code.
protected CalculateHashCode ( ) : int
리턴 int

Equals() 공개 메소드

Determines whether the specified System.Object, is equal to this instance.
public Equals ( object obj ) : bool
obj object The to compare with this instance.
리턴 bool

GetHashCode() 공개 메소드

Returns a hash code for this instance.
public GetHashCode ( ) : int
리턴 int

LinqExpressionToRun() 보호된 메소드

Initializes a new instance of the LinqExpressionToRun class.
protected LinqExpressionToRun ( ) : System.Collections.Generic
리턴 System.Collections.Generic

LinqExpressionToRun() 공개 메소드

Initializes a new instance of the LinqExpressionToRun class.
public LinqExpressionToRun ( string linq, IReadOnlyList references = null, IReadOnlyList usings = null, bool unique = false ) : System.Collections.Generic
linq string The linq.
references IReadOnlyList The references. Add any DLL references needed by your code here
usings IReadOnlyList The using statements. Add any using statements needed by your code here
unique bool if set to true this expression contains data that makes it likely to unique. The compiler may choose to not cache the output if this flag is true.
리턴 System.Collections.Generic