Does anyone know how do get the \"show me\" value using Google .NET API? I know how to get mosts of the EventEntry details I just cant get this one out.
it is the on
I created an extension method that handles this:
///
/// Determines whether or not the EventEntry is set as Busy.
///
/// The Google EventEntry.
public static bool IsBusy(this EventEntry entry)
{
return entry.EventTransparency.Value.Equals("http://schemas.google.com/g/2005#event.opaque");
}
Usage:
EventEntry eventEntry = ...
bool isBusy = eventEntry.IsBusy();