EnterpriseReport.AuthenticationType Property
Gets or sets the authentication type. Valid values are secEnterprise and secWindowsNT.
Namespace CrystalDecisions.Shared Assembly CrystalDecisions.Shared (CrystalDecisions.Shared.dll)
Syntax
'Declaration
Public Overrideable Property AuthenticationType As String
public virtual string AuthenticationType {get; set;}
Example
This example shows how to get the authentication type from an EnterpriseReport.
'Declaration
Private Function GetAuthenticationType(ByVal myEnterpriseReport As EnterpriseReport) As String
GetAuthenticationType = myEnterpriseReport.AuthenticationType
End Function
private string GetAuthenticationType(EnterpriseReport enterpriseReport)
{
return enterpriseReport.AuthenticationType;
}
Version Information
Crystal Reports Basic for Visual Studio 2008
Supported since: Crystal Reports for Visual Studio .NET 2002
See Also
Reference
EnterpriseReport Class
EnterpriseReport Members
CrystalDecisions.Shared Namespace