PicasaUploader.ViewModels.UploadPhotosViewModel.IsPhotoFile C# (CSharp) Method

IsPhotoFile() public method

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