PicasaUploader.ViewModels.UploadPhotosViewModel.IsPhotoFile C# (CSharp) Méthode

IsPhotoFile() public méthode

public IsPhotoFile ( string fileName ) : bool
fileName string
Résultat bool
        public bool IsPhotoFile(string fileName)
        {
            return UploadService.SupportedPhotoFormats.Contains(Path.GetExtension(fileName).ToLowerInvariant());
        }