C# 클래스 At.FF.Krems.FullscreenBrowser.FilteredPromptService

Used to prevent from displaying certain firefox alerts.
상속: nsIPromptService2, nsIPrompt
파일 보기 프로젝트 열기: Grisu-NOE/Infoscreen

공개 메소드들

메소드 설명
Alert ( nsIDOMWindow parent, string dialogTitle, string text ) : void

The alert.

Alert ( string dialogTitle, string text ) : void

The alert.

AlertCheck ( nsIDOMWindow parent, string dialogTitle, string text, string checkMsg, bool &checkState ) : void

The alert check.

AlertCheck ( string dialogTitle, string text, string checkMsg, bool &checkValue ) : void

The alert check.

AsyncPromptAuth ( nsIDOMWindow parent, nsIChannel channel, nsIAuthPromptCallback callback, nsISupports context, uint level, nsIAuthInformation authInfo, string checkboxLabel, bool &checkValue ) : nsICancelable

The async prompt authentication.

Confirm ( nsIDOMWindow parent, string dialogTitle, string text ) : bool

The confirm.

Confirm ( string dialogTitle, string text ) : bool

The confirm.

ConfirmCheck ( nsIDOMWindow parent, string dialogTitle, string text, string checkMsg, bool &checkState ) : bool

The confirm check.

ConfirmCheck ( string dialogTitle, string text, string checkMsg, bool &checkValue ) : bool

The confirm check.

ConfirmEx ( nsIDOMWindow parent, string dialogTitle, string text, uint buttonFlags, string button0Title, string button1Title, string button2Title, string checkMsg, bool &checkState ) : int

The confirm ex.

ConfirmEx ( string dialogTitle, string text, uint buttonFlags, string button0Title, string button1Title, string button2Title, string checkMsg, bool &checkValue ) : int

The confirm ex.

Prompt ( nsIDOMWindow parent, string dialogTitle, string text, string &value, string checkMsg, bool &checkState ) : bool

The prompt.

Prompt ( string dialogTitle, string text, string &value, string checkMsg, bool &checkValue ) : bool

The prompt.

PromptAuth ( nsIDOMWindow parent, nsIChannel channel, uint level, nsIAuthInformation authInfo, string checkboxLabel, bool &checkValue ) : bool

The prompt authentication.

PromptPassword ( nsIDOMWindow parent, string dialogTitle, string text, string &password, string checkMsg, bool &checkState ) : bool

The prompt password.

PromptPassword ( string dialogTitle, string text, string &password, string checkMsg, bool &checkValue ) : bool

The prompt password.

PromptUsernameAndPassword ( nsIDOMWindow parent, string dialogTitle, string text, string &username, string &password, string checkMsg, bool &checkState ) : bool

The prompt username and password.

PromptUsernameAndPassword ( string dialogTitle, string text, string &username, string &password, string checkMsg, bool &checkValue ) : bool

The prompt username and password.

Select ( nsIDOMWindow parent, string dialogTitle, string text, uint count, IntPtr selectList, int &outSelection ) : bool

The select.

Select ( string dialogTitle, string text, uint count, IntPtr selectList, int &outSelection ) : bool

The select.

메소드 상세

Alert() 공개 메소드

The alert.
public Alert ( nsIDOMWindow parent, string dialogTitle, string text ) : void
parent nsIDOMWindow The parent.
dialogTitle string The dialog Title.
text string The text.
리턴 void

Alert() 공개 메소드

The alert.
public Alert ( string dialogTitle, string text ) : void
dialogTitle string The dialog title.
text string The text.
리턴 void

AlertCheck() 공개 메소드

The alert check.
public AlertCheck ( nsIDOMWindow parent, string dialogTitle, string text, string checkMsg, bool &checkState ) : void
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
checkMsg string The check message.
checkState bool The check state.
리턴 void

AlertCheck() 공개 메소드

The alert check.
public AlertCheck ( string dialogTitle, string text, string checkMsg, bool &checkValue ) : void
dialogTitle string The dialog title.
text string The text.
checkMsg string The check message.
checkValue bool The check value.
리턴 void

AsyncPromptAuth() 공개 메소드

The async prompt authentication.
public AsyncPromptAuth ( nsIDOMWindow parent, nsIChannel channel, nsIAuthPromptCallback callback, nsISupports context, uint level, nsIAuthInformation authInfo, string checkboxLabel, bool &checkValue ) : nsICancelable
parent nsIDOMWindow The parent.
channel nsIChannel The channel.
callback nsIAuthPromptCallback The callback.
context nsISupports The context.
level uint The level.
authInfo nsIAuthInformation The authentication info.
checkboxLabel string The checkbox label.
checkValue bool The check value.
리턴 nsICancelable

Confirm() 공개 메소드

The confirm.
public Confirm ( nsIDOMWindow parent, string dialogTitle, string text ) : bool
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
리턴 bool

Confirm() 공개 메소드

The confirm.
public Confirm ( string dialogTitle, string text ) : bool
dialogTitle string The dialog title.
text string The text.
리턴 bool

ConfirmCheck() 공개 메소드

The confirm check.
public ConfirmCheck ( nsIDOMWindow parent, string dialogTitle, string text, string checkMsg, bool &checkState ) : bool
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
checkMsg string The check message.
checkState bool The check state.
리턴 bool

ConfirmCheck() 공개 메소드

The confirm check.
public ConfirmCheck ( string dialogTitle, string text, string checkMsg, bool &checkValue ) : bool
dialogTitle string The dialog title.
text string The text.
checkMsg string The check message.
checkValue bool The check value.
리턴 bool

ConfirmEx() 공개 메소드

The confirm ex.
public ConfirmEx ( nsIDOMWindow parent, string dialogTitle, string text, uint buttonFlags, string button0Title, string button1Title, string button2Title, string checkMsg, bool &checkState ) : int
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
buttonFlags uint The button flags.
button0Title string The button 0 title.
button1Title string The button 1 title.
button2Title string The button 2 title.
checkMsg string The check message.
checkState bool The check state.
리턴 int

ConfirmEx() 공개 메소드

The confirm ex.
public ConfirmEx ( string dialogTitle, string text, uint buttonFlags, string button0Title, string button1Title, string button2Title, string checkMsg, bool &checkValue ) : int
dialogTitle string The dialog title.
text string The text.
buttonFlags uint The button flags.
button0Title string The button 0 title.
button1Title string The button 1 title.
button2Title string The button 2 title.
checkMsg string The check message.
checkValue bool The check value.
리턴 int

Prompt() 공개 메소드

The prompt.
public Prompt ( nsIDOMWindow parent, string dialogTitle, string text, string &value, string checkMsg, bool &checkState ) : bool
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
value string The value.
checkMsg string The check message.
checkState bool The check state.
리턴 bool

Prompt() 공개 메소드

The prompt.
public Prompt ( string dialogTitle, string text, string &value, string checkMsg, bool &checkValue ) : bool
dialogTitle string The dialog title.
text string The text.
value string The value.
checkMsg string The check message.
checkValue bool The check value.
리턴 bool

PromptAuth() 공개 메소드

The prompt authentication.
public PromptAuth ( nsIDOMWindow parent, nsIChannel channel, uint level, nsIAuthInformation authInfo, string checkboxLabel, bool &checkValue ) : bool
parent nsIDOMWindow The parent.
channel nsIChannel The channel.
level uint The level.
authInfo nsIAuthInformation The authentication info.
checkboxLabel string The checkbox label.
checkValue bool The check value.
리턴 bool

PromptPassword() 공개 메소드

The prompt password.
public PromptPassword ( nsIDOMWindow parent, string dialogTitle, string text, string &password, string checkMsg, bool &checkState ) : bool
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
password string The password.
checkMsg string The check message.
checkState bool The check state.
리턴 bool

PromptPassword() 공개 메소드

The prompt password.
public PromptPassword ( string dialogTitle, string text, string &password, string checkMsg, bool &checkValue ) : bool
dialogTitle string The dialog title.
text string The text.
password string The password.
checkMsg string The check message.
checkValue bool The check value.
리턴 bool

PromptUsernameAndPassword() 공개 메소드

The prompt username and password.
public PromptUsernameAndPassword ( nsIDOMWindow parent, string dialogTitle, string text, string &username, string &password, string checkMsg, bool &checkState ) : bool
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
username string The username.
password string The password.
checkMsg string The check message.
checkState bool The check state.
리턴 bool

PromptUsernameAndPassword() 공개 메소드

The prompt username and password.
public PromptUsernameAndPassword ( string dialogTitle, string text, string &username, string &password, string checkMsg, bool &checkValue ) : bool
dialogTitle string The dialog title.
text string The text.
username string The username.
password string The password.
checkMsg string The check message.
checkValue bool The check value.
리턴 bool

Select() 공개 메소드

The select.
public Select ( nsIDOMWindow parent, string dialogTitle, string text, uint count, IntPtr selectList, int &outSelection ) : bool
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
count uint The a count.
selectList System.IntPtr The select list.
outSelection int The out selection.
리턴 bool

Select() 공개 메소드

The select.
public Select ( string dialogTitle, string text, uint count, IntPtr selectList, int &outSelection ) : bool
dialogTitle string The dialog title.
text string The text.
count uint The count.
selectList System.IntPtr The select list.
outSelection int The out selection.
리턴 bool