CivicAddress.Unknown 字段

定义

表示一个不包含任何数据的 CivicAddressRepresents a CivicAddress that contains no data.

public: static initonly System::Device::Location::CivicAddress ^ Unknown;
public static readonly System.Device.Location.CivicAddress Unknown;
 staticval mutable Unknown : System.Device.Location.CivicAddress
Public Shared ReadOnly Unknown As CivicAddress 

字段值

CivicAddress

示例

下面的示例使用 IsUnknown 来检查 CivicAddressResolveAddress 市政地址输出之前返回的。The following example uses IsUnknown to check the CivicAddress that is returned from ResolveAddress before the civic address is printed out.

static void ResolveAddressSync()
{
    GeoCoordinateWatcher watcher = new GeoCoordinateWatcher(GeoPositionAccuracy.High);
    watcher.MovementThreshold = 1.0; // set to one meter
    watcher.TryStart(false, TimeSpan.FromMilliseconds(1000));

    CivicAddressResolver resolver = new CivicAddressResolver();

    if (watcher.Position.Location.IsUnknown == false)
    {
        CivicAddress address = resolver.ResolveAddress(watcher.Position.Location);

        if (!address.IsUnknown)
        {
            Console.WriteLine("Country: {0}, Zip: {1}",
                    address.CountryRegion,
                    address.PostalCode);
        }
        else
        {
            Console.WriteLine("Address unknown.");
        }
    }
}

Public Sub ResolveAddressSync()
    Dim watcher As GeoCoordinateWatcher
    watcher = New System.Device.Location.GeoCoordinateWatcher(GeoPositionAccuracy.High)
    Dim started As Boolean = False
    watcher.MovementThreshold = 1.0     'set to one meter
    started = watcher.TryStart(False, TimeSpan.FromMilliseconds(1000))

    Dim resolver As CivicAddressResolver = New CivicAddressResolver()
    If started Then
        If Not watcher.Position.Location.IsUnknown Then
            Dim address As CivicAddress = resolver.ResolveAddress(watcher.Position.Location)
            If Not address.IsUnknown Then
                Console.WriteLine("Country: {0}, Zip: {1}",
                            address.CountryRegion,
                            address.PostalCode)
            Else
                Console.WriteLine("Address unknown.")
            End If
        End If
    Else
        Console.WriteLine("GeoCoordinateWatcher timed out on start.")
    End If
End Sub

注解

使用 IsUnknown 验证是否 CivicAddress 包含数据。Use IsUnknown to verify whether a CivicAddress contains data.

适用于