# IMapAddress

> Namespace: XPlat.Services.Maps

Represents an address.

```csharp
public interface IMapAddress
```

## Supported platforms

| Platform        | Version    |
| --------------- | ---------- |
| .NET Standard   | 2.0        |
| Xamarin.Android | 9.0        |
| Xamarin.iOS     | 1.0        |
| UWP             | 10.0.16299 |

## Properties

### BuildingName

Gets the building name of an address.

```csharp
string BuildingName { get; }
```

### BuildingFloor

Gets the building floor of an address.

```csharp
string BuildingFloor { get; }
```

### BuildingRoom

Gets the building room of an address.

```csharp
string BuildingRoom { get; }
```

### BuildingWing

Gets the building wing of an address.

```csharp
string BuildingWing { get; }
```

### StreetNumber

Gets the street number of an address.

```csharp
string StreetNumber { get; }
```

### Street

Gets the street name of an address.

```csharp
string Street { get; }
```

### Neighborhood

Gets the neighborhood of an address.

```csharp
string Neighborhood { get; }
```

### District

Gets the district of an address.

```csharp
string District { get; }
```

### Town

Gets the town or city of an address.

```csharp
string Town { get; }
```

### Region

Gets the region (for example, the state or province) of an address.

```csharp
string Region { get; }
```

### RegionCode

Gets the code for the region (for example, the state or province) of an address.

```csharp
string RegionCode { get; }
```

### Country

Gets the country of an address.

```csharp
string Country { get; }
```

### CountryCode

Gets the country code of an address.

```csharp
string CountryCode { get; }
```

### PostCode

Gets the postal code of an address.

```csharp
string PostCode { get; }
```

### Continent

Gets the continent of an address.

```csharp
string Continent { get; }
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://xplat.gitbook.io/docs/xplat.services.maps/imapaddress.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
