Address Class
Abblix.Oidc.Server
Abblix.Oidc.Server.Model
Address Class
Represents a physical address, providing various components typically used in postal addresses.
public record Address : System.IEquatable<Abblix.Oidc.Server.Model.Address>
Inheritance System.Object → Address
Implements System.IEquatable<Address>
Properties
Address.Country Property
Country name component.
public string? Country { get; set; }
Property Value
Address.Formatted Property
Full mailing address, formatted for display or use on a mailing label. This field MAY contain multiple lines, separated by newlines. Newlines can be represented either as a carriage return/line feed pair ("\r\n") or as a single line feed character ("\n").
public string? Formatted { get; set; }
Property Value
Address.Locality Property
City or locality component.
public string? Locality { get; set; }
Property Value
Address.PostalCode Property
Zip code or postal code component.
public string? PostalCode { get; set; }
Property Value
Address.Region Property
State, province, prefecture, or region component.
public string? Region { get; set; }
Property Value
Address.StreetAddress Property
Full street address component, which MAY include house number, street name, Post Office Box, and multi-line extended street address information. This field MAY contain multiple lines, separated by newlines. Newlines can be represented either as a carriage return/line feed pair ("\r\n") or as a single line feed character ("\n").
public string? StreetAddress { get; set; }