次の方法で共有


TileBinding コンストラクター

定義

オーバーロード

TileBinding()

TileBinding クラスの新しいインスタンスを初期化します。

TileBinding(TileImage[])

TileBinding クラスの新しいインスタンスを初期化します。

TileBinding(TileText[])

TileBinding クラスの新しいインスタンスを初期化します。

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

TileBinding クラスの新しいインスタンスを初期化します。

TileBinding()

TileBinding クラスの新しいインスタンスを初期化します。

public TileBinding ();
Public Sub New ()

適用対象

TileBinding(TileImage[])

TileBinding クラスの新しいインスタンスを初期化します。

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())

パラメーター

images
TileImage[]

このタイルの TileImage 初期セット。

適用対象

TileBinding(TileText[])

TileBinding クラスの新しいインスタンスを初期化します。

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())

パラメーター

texts
TileText[]

このタイルの TileText 初期セット。

適用対象

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

TileBinding クラスの新しいインスタンスを初期化します。

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

パラメーター

images
IEnumerable<TileImage>

このタイルの TileImage 初期セット。

texts
IEnumerable<TileText>

このタイルの TileText 初期セット。

適用対象