ReportServerCredentialsGetFormsCredentials Method |
Provides information that will be used to connect to the report server that is configured for forms authentication.
Namespace:
NetQuarry.Reporting
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public bool GetFormsCredentials(
out Cookie authcoki,
out string userName,
out string password,
out string authority
)
Public Function GetFormsCredentials (
<OutAttribute> ByRef authcoki As Cookie,
<OutAttribute> ByRef userName As String,
<OutAttribute> ByRef password As String,
<OutAttribute> ByRef authority As String
) As Boolean
Parameters
- authcoki
- Type: System.NetCookie
A report server authentication cookie. - userName
- Type: SystemString
The name of the user, as provided in the constructor. - password
- Type: SystemString
The password of the user, as provided in the constructor. - authority
- Type: SystemString
The authority to use when authenticating the user, such as a Microsoft Windows domain.
Currently this is always the domain, as provided in the constructor.
Return Value
Type:
BooleanTrue, always at this time.
See Also