PicasaUploader.ViewModels.UploadPhotosViewModel.IsPhotoFile C# (CSharp) Метод

IsPhotoFile() публичный Метод

public IsPhotoFile ( string fileName ) : bool
fileName string
Результат bool
        public bool IsPhotoFile(string fileName)
        {
            return UploadService.SupportedPhotoFormats.Contains(Path.GetExtension(fileName).ToLowerInvariant());
        }