TileBinding Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.WindowsAzure.Mobile.Service.TileImage[] images);
new Microsoft.WindowsAzure.Mobile.Service.TileBinding : Microsoft.WindowsAzure.Mobile.Service.TileImage[] -> Microsoft.WindowsAzure.Mobile.Service.TileBinding
Public Sub New (ParamArray images As TileImage())
Parameters
Applies to
TileBinding(TileText[])
Initializes a new instance of the TileBinding class.
public TileBinding (params Microsoft.WindowsAzure.Mobile.Service.TileText[] texts);
new Microsoft.WindowsAzure.Mobile.Service.TileBinding : Microsoft.WindowsAzure.Mobile.Service.TileText[] -> Microsoft.WindowsAzure.Mobile.Service.TileBinding
Public Sub New (ParamArray texts As TileText())
Parameters
Applies to
TileBinding(IEnumerable<TileImage>, IEnumerable<TileText>)
Initializes a new instance of the TileBinding class.
public TileBinding (System.Collections.Generic.IEnumerable<Microsoft.WindowsAzure.Mobile.Service.TileImage> images, System.Collections.Generic.IEnumerable<Microsoft.WindowsAzure.Mobile.Service.TileText> texts);
new Microsoft.WindowsAzure.Mobile.Service.TileBinding : seq<Microsoft.WindowsAzure.Mobile.Service.TileImage> * seq<Microsoft.WindowsAzure.Mobile.Service.TileText> -> Microsoft.WindowsAzure.Mobile.Service.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
Azure SDK for .NET