Beispiel #1
0
        internal async static Task <bool> WriteStringPickLocationAsync(string content, string name)
        {
            IStorageInterface si = DependencyService.Get <IStorageInterface>();

            if (si != null)
            {
                await si.WriteStringPickLocationAsync(content, name);

                return(true);
            }
            return(false);
        }