PRIMAVERA | Developers

    Show / Hide Table of Contents

    Class StdBEWeatherInfo

    Standard business entity for weather information.

    Inheritance
    System.Object
    StdBE
    StdBaseBE
    StdBEWeatherInfo
    Inherited Members
    StdBE.SerializeJson()
    StdBE.SerializeJson(List<String>)
    StdBE.ParseJsonText(String, List<String>)
    StdBE.SerializeJsonToXml(String, List<String>)
    StdBE.SerializeXml(XmlAttributeOverrides, XmlSerializerNamespaces)
    StdBE.Clone()
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: StdPlatBE100
    Assembly: StdPlatBE100.dll
    Syntax
    public class StdBEWeatherInfo : StdBaseBE

    Constructors

    StdBEWeatherInfo()

    Initializes a new instance of the StdBEWeatherInfo class.

    Declaration
    public StdBEWeatherInfo()

    Properties

    City

    Gets or sets the city.

    Declaration
    public string City { get; set; }
    Property Value
    Type Description
    System.String

    Clouds

    Gets or sets the clouds.

    Declaration
    public string Clouds { get; set; }
    Property Value
    Type Description
    System.String

    Country

    Gets or sets the country.

    Declaration
    public string Country { get; set; }
    Property Value
    Type Description
    System.String

    FiveDaysForeCast

    Gets or sets the five days forecast.

    Declaration
    public List<StdBEWeatherDay> FiveDaysForeCast { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<StdBEWeatherDay>

    HumidityUnit

    Gets or sets the humidity unit.

    Declaration
    public string HumidityUnit { get; set; }
    Property Value
    Type Description
    System.String

    HumidityValue

    Gets or sets the humidity value.

    Declaration
    public string HumidityValue { get; set; }
    Property Value
    Type Description
    System.String

    MaxTemperature

    Gets or sets the maximum temperature.

    Declaration
    public string MaxTemperature { get; set; }
    Property Value
    Type Description
    System.String

    MinTemperature

    Gets or sets the minimum temperature.

    Declaration
    public string MinTemperature { get; set; }
    Property Value
    Type Description
    System.String

    PressureUnit

    Gets or sets the pressure unit.

    Declaration
    public string PressureUnit { get; set; }
    Property Value
    Type Description
    System.String

    PressureValue

    Gets or sets the pressure value.

    Declaration
    public string PressureValue { get; set; }
    Property Value
    Type Description
    System.String

    Temperature

    Gets or sets the temperature.

    Declaration
    public string Temperature { get; set; }
    Property Value
    Type Description
    System.String

    WeatherDay

    Gets or sets the weather day;

    Declaration
    public DateTime WeatherDay { get; set; }
    Property Value
    Type Description
    System.DateTime

    WeatherID

    Gets or sets the weather identifier.

    Declaration
    public string WeatherID { get; set; }
    Property Value
    Type Description
    System.String

    WeatherPic

    Gets or sets the weather pic.

    Declaration
    public Image WeatherPic { get; set; }
    Property Value
    Type Description
    System.Drawing.Image

    WindDescription

    Gets or sets the wind description.

    Declaration
    public string WindDescription { get; set; }
    Property Value
    Type Description
    System.String

    WindDirection

    Gets or sets the wind direction.

    Declaration
    public string WindDirection { get; set; }
    Property Value
    Type Description
    System.String

    WindDirectionDegree

    Gets or sets the wind direction degree.

    Declaration
    public string WindDirectionDegree { get; set; }
    Property Value
    Type Description
    System.String

    WindUnit

    Gets or sets the wind unit.

    Declaration
    public string WindUnit { get; set; }
    Property Value
    Type Description
    System.String

    WindValue

    Gets or sets the wind value.

    Declaration
    public string WindValue { get; set; }
    Property Value
    Type Description
    System.String

    See Also

    StdBaseBE