TileBinding Constructors

Definition

Overloads

TileBinding()

Initializes a new instance of the TileBinding class.

TileBinding(TileImage[])

Initializes a new instance of the TileBinding class.

TileBinding(TileText[])

Initializes a new instance of the TileBinding class.

TileBinding(IEnumerable<TileImage>, IEnumerable<TileText>)

Initializes a new instance of the TileBinding class.

TileBinding()

Initializes a new instance of the TileBinding class.

public TileBinding ();
Public Sub New ()

Applies to

TileBinding(TileImage[])

Initializes a new instance of the TileBinding class.

public TileBinding (params Microsoft.Azure.Mobile.Server.TileImage[] images);
new Microsoft.Azure.Mobile.Server.TileBinding : Microsoft.Azure.Mobile.Server.TileImage[] -> Microsoft.Azure.Mobile.Server.TileBinding
Public Sub New (ParamArray images As TileImage())

Parameters

images
TileImage[]

An initial set of TileImage for this tile.

Applies to

TileBinding(TileText[])

Initializes a new instance of the TileBinding class.

public TileBinding (params Microsoft.Azure.Mobile.Server.TileText[] texts);
new Microsoft.Azure.Mobile.Server.TileBinding : Microsoft.Azure.Mobile.Server.TileText[] -> Microsoft.Azure.Mobile.Server.TileBinding
Public Sub New (ParamArray texts As TileText())

Parameters

texts
TileText[]

An initial set of TileText for this tile.

Applies to

TileBinding(IEnumerable<TileImage>, IEnumerable<TileText>)

Initializes a new instance of the TileBinding class.

public TileBinding (System.Collections.Generic.IEnumerable<Microsoft.Azure.Mobile.Server.TileImage> images, System.Collections.Generic.IEnumerable<Microsoft.Azure.Mobile.Server.TileText> texts);
new Microsoft.Azure.Mobile.Server.TileBinding : seq<Microsoft.Azure.Mobile.Server.TileImage> * seq<Microsoft.Azure.Mobile.Server.TileText> -> Microsoft.Azure.Mobile.Server.TileBinding
Public Sub New (images As IEnumerable(Of TileImage), texts As IEnumerable(Of TileText))

Parameters

images
IEnumerable<TileImage>

An initial set of TileImage for this tile.

texts
IEnumerable<TileText>

An initial set of TileText for this tile.

Applies to