C# 클래스 Nexus.Client.PluginManagement.UI.ImportFailedEventArgs

An event arguments class that indicates that an import operation failed.
상속: System.EventArgs
파일 보기 프로젝트 열기: NexusMods/NexusModManager-4.5 1 사용 예제들

공개 메소드들

메소드 설명
ImportFailedEventArgs ( Exception p_exError ) : System

A simple constructor that initializes the object with the given values.

This form is used when importing from the clipboard. The value of the Message is initially set to the given exception's Exception.Message.

ImportFailedEventArgs ( string p_strMessage ) : System

A simple constructor that initializes the object with the given values.

This form is used when importing from the clipboard.

ImportFailedEventArgs ( string p_strFilename, Exception p_exError ) : System

A simple constructor that initializes the object with the given values.

The value of the Message is initially set to the given exception's Exception.Message.

ImportFailedEventArgs ( string p_strFilename, string p_strMessage ) : System

A simple constructor that initializes the object with the given values.

메소드 상세

ImportFailedEventArgs() 공개 메소드

A simple constructor that initializes the object with the given values.
This form is used when importing from the clipboard. The value of the Message is initially set to the given exception's Exception.Message.
public ImportFailedEventArgs ( Exception p_exError ) : System
p_exError System.Exception The error that occurred.
리턴 System

ImportFailedEventArgs() 공개 메소드

A simple constructor that initializes the object with the given values.
This form is used when importing from the clipboard.
public ImportFailedEventArgs ( string p_strMessage ) : System
p_strMessage string A message describing why the import failed.
리턴 System

ImportFailedEventArgs() 공개 메소드

A simple constructor that initializes the object with the given values.
The value of the Message is initially set to the given exception's Exception.Message.
public ImportFailedEventArgs ( string p_strFilename, Exception p_exError ) : System
p_strFilename string The filename that the load order failed to import from.
p_exError System.Exception The error that occurred.
리턴 System

ImportFailedEventArgs() 공개 메소드

A simple constructor that initializes the object with the given values.
public ImportFailedEventArgs ( string p_strFilename, string p_strMessage ) : System
p_strFilename string The filename that the load order failed to import from.
p_strMessage string A message describing why the import failed.
리턴 System