Class UnsupportedFileFormatException
Nazwa przestrzeń: Aspose.Note Zgromadzenie: Aspose.Note.dll (25.4.0)
Przeniknięty podczas ładowania dokumentów, gdy format pliku nie jest rozpoznawany lub nie obsługiwany przez Aspose.Note.
public class UnsupportedFileFormatException : Exception, ISerializable
Inheritance
object ← Exception ← UnsupportedFileFormatException
Implements
Dziedziczeni członkowie
Exception.GetBaseException() , Exception.ToString() , Exception.GetType() , Exception.TargetSite , Exception.Message , Exception.Data , Exception.InnerException , Exception.HelpLink , Exception.Source , Exception.HResult , Exception.StackTrace , Exception.SerializeObjectState , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Pokaż, jak sprawdzić, czy ładowanie dokumentu jest nieudane, ponieważ format OneNote 2007 nie jest obsługiwany.
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "OneNote2007.one");
try
{
new Document(fileName);
}
catch (UnsupportedFileFormatException e)
{
if (e.FileFormat == FileFormat.OneNote2007)
{
Console.WriteLine("It looks like the provided file is in OneNote 2007 format that is not supported.");
}
else
throw;
}
Constructors
UnsupportedFileFormatException(Informacje, StreamingContext)
Inicjalizuje nową instancję klasy Aspose.Note.UnsupportedFileFormatException.
protected UnsupportedFileFormatException(SerializationInfo serializationInfo, StreamingContext synchronizationContext)
Parameters
serializationInfo
SerializationInfo
Informacja o serializacji.
synchronizationContext
StreamingContext
W kontekście synchronizacji.
Properties
FileFormat
Otrzymuje format pliku przekazanych danych, jeśli jest wykryty.
public FileFormat FileFormat { get; }
Wartość nieruchomości
Examples
Pokaż, jak sprawdzić, czy ładowanie dokumentu jest nieudane, ponieważ format OneNote 2007 nie jest obsługiwany.
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "OneNote2007.one");
try
{
new Document(fileName);
}
catch (UnsupportedFileFormatException e)
{
if (e.FileFormat == FileFormat.OneNote2007)
{
Console.WriteLine("It looks like the provided file is in OneNote 2007 format that is not supported.");
}
else
throw;
}