Class WebHttpAuthHandler

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

It is a class for http authencation handler of web view.

C#
Copy
public class WebHttpAuthHandler : Disposable
Inheritance
WebHttpAuthHandler

Properties

View Source

Realm

Gets the realm of authentication challenge received.

Declaration
C#
Copy
public string Realm { get; }
Property Value
Type Description
String

Methods

View Source

CancelCredential()

Sends cancellation notification for authentication challenge.

Declaration
C#
Copy
public void CancelCredential()
View Source

ReleaseSwigCPtr(Runtime.InteropServices.HandleRef)

Declaration
C#
Copy
protected override void ReleaseSwigCPtr(Runtime.InteropServices.HandleRef swigCPtr)
Parameters
Type Name Description
Tizen.System.Runtime.InteropServices.HandleRef swigCPtr
Overrides
View Source

Suspend()

Suspends the operation for authentication challenge.

Declaration
C#
Copy
public void Suspend()
View Source

UseCredential(String, String)

Sends credential for authentication challenge.

Declaration
C#
Copy
public void UseCredential(string userId, string password)
Parameters
Type Name Description
String userId

user id from user input.

String password

user password from user input.

Extension Methods