Place Constructors

Definition

Overloads

Place()

Initializes a new instance of the Place class.

Place(Object, Object, Object, String, String)

Initializes a new instance of the Place class.

Place()

Initializes a new instance of the Place class.

public Place ();
Public Sub New ()

Applies to

Place(Object, Object, Object, String, String)

Initializes a new instance of the Place class.

public Place (object address = default, object geo = default, object hasMap = default, string type = default, string name = default);
new Microsoft.Bot.Schema.Place : obj * obj * obj * string * string -> Microsoft.Bot.Schema.Place
Public Sub New (Optional address As Object = Nothing, Optional geo As Object = Nothing, Optional hasMap As Object = Nothing, Optional type As String = Nothing, Optional name As String = Nothing)

Parameters

address
Object

Address of the place (may be string or complex object of type PostalAddress).

geo
Object

Geo coordinates of the place (may be complex object of type GeoCoordinates or GeoShape).

hasMap
Object

Map to the place (may be string (URL) or complex object of type Map).

type
String

The type of the thing.

name
String

The name of the thing.

Applies to