Creates new range. Consider using From(Int64), To(Int64), Create(Int64, Int64) static methods to create an instance of this class.

Namespace: Limilabs.Client.IMAP
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public Range(
	Nullable<long> start,
	Nullable<long> end
)
Visual Basic
Public Sub New ( _
	start As Nullable(Of Long), _
	end As Nullable(Of Long) _
)
Visual C++
public:
Range(
	Nullable<long long> start, 
	Nullable<long long> end
)

Parameters

start
Type: System..::..Nullable<(Of <(<'Int64>)>)>
Range start.
end
Type: System..::..Nullable<(Of <(<'Int64>)>)>
Range end.

See Also