Class UnsupportedFileFormatException
Название пространства: Aspose.Note Ассоциация: Aspose.Note.dll (25.4.0)
Происходит во время загрузки документов, когда формат файла не распознается или не поддерживается Aspose.Note.
public class UnsupportedFileFormatException : Exception, ISerializable
Inheritance
object ← Exception ← UnsupportedFileFormatException
Implements
Наследованные члены
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
Показать, как проверить, не удается ли загрузить документ, потому что формат OneNote 2007 не поддерживается.
// 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(СериализацияИнфо, StreamingContext)
Инициализует новую инстанцию класса Aspose.Note.UnsupportedFileFormatException.
protected UnsupportedFileFormatException(SerializationInfo serializationInfo, StreamingContext synchronizationContext)
Parameters
serializationInfo
SerializationInfo
Информация о сериализации.
synchronizationContext
StreamingContext
Контекст синхронизации.
Properties
FileFormat
Получается формат файла переданных данных, если обнаружены.
public FileFormat FileFormat { get; }
Стоимость недвижимости
Examples
Показать, как проверить, не удается ли загрузить документ, потому что формат OneNote 2007 не поддерживается.
// 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;
}