OffsetTime.AtDate(LocalDate) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Combines this time with a date to create an OffsetDateTime.
[Android.Runtime.Register("atDate", "(Ljava/time/LocalDate;)Ljava/time/OffsetDateTime;", "", ApiSince=26)]
public Java.Time.OffsetDateTime? AtDate(Java.Time.LocalDate? date);
[<Android.Runtime.Register("atDate", "(Ljava/time/LocalDate;)Ljava/time/OffsetDateTime;", "", ApiSince=26)>]
member this.AtDate : Java.Time.LocalDate -> Java.Time.OffsetDateTime
Parameters
- date
- LocalDate
the date to combine with, not null
Returns
the offset date-time formed from this time and the specified date, not null
- Attributes
Remarks
Combines this time with a date to create an OffsetDateTime. This returns an OffsetDateTime formed from this time and the specified date. All possible combinations of date and time are valid.
Java reference for java.time.OffsetTime.atDate.