Table of Contents

Interface IWrapping<TSelf, T>

Namespace
Rinku
Assembly
Rinku.dll

Lets a wrapper be used as a query result type. Implement this interface when a custom wrapper can be created from one value.

public interface IWrapping<TSelf, T> where TSelf : IWrapping<TSelf, T>

Type Parameters

TSelf
T
Extension Methods

Methods

Make(T)

Creates the wrapper from a value returned by a query.

public static abstract TSelf Make(T val)

Parameters

val T

Returns

TSelf