public static long DateTimeUtcNowOurTicks()
        {
                        #if Win8
            var task = wsdl.DateTimeUtcNowOurTicksAsync();
            task.Wait();
            return(task.Result);
                        #else
#if WINDOWS_PHONE
            throw new NotImplementedException();
#else
            return(wsdl.DateTimeUtcNowOurTicks());
                        #endif
#endif
        }