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());
        }