Table of Contents

Class Carrier

Namespace
Vonage.NumberInsights
Assembly
Vonage.dll

Represents carrier (mobile network operator) information for a phone number.

public class Carrier
Inheritance
Carrier
Inherited Members

Properties

Country

The country where the carrier operates, in ISO 3166-1 alpha-2 format (e.g., "GB", "US").

[JsonProperty("country")]
public string Country { get; set; }

Property Value

string

Name

The full name of the carrier the number is associated with (e.g., "Vodafone", "AT&T").

[JsonProperty("name")]
public string Name { get; set; }

Property Value

string

NetworkCode

The Mobile Country Code (MCC) and Mobile Network Code (MNC) for the carrier. Invalid numbers are marked as "unknown" and impossible E.164 numbers are rejected.

[JsonProperty("network_code")]
public string NetworkCode { get; set; }

Property Value

string

NetworkType

The type of network: mobile, landline, virtual, premium, or toll-free.

[JsonProperty("network_type")]
public string NetworkType { get; set; }

Property Value

string