Credentials Property
For the latest version of Commerce Server 2007 Help, see the Microsoft Web site.
Gets or sets the Credentials currently being used by the Agent to access the Web service.
Namespace: Microsoft.CommerceServer
Assembly: Microsoft.CommerceServer.CrossTierTypes (in Microsoft.CommerceServer.CrossTierTypes.dll)
Syntax
'Declaration
Public Property Credentials As ICredentials
'Usage
Dim instance As ServiceAgent
Dim value As ICredentials
value = instance.Credentials
instance.Credentials = value
public ICredentials Credentials { get; set; }
public:
property ICredentials^ Credentials {
ICredentials^ get ();
void set (ICredentials^ value);
}
public function get Credentials () : ICredentials
public function set Credentials (value : ICredentials)
Property Value
Type: System.Net..::.ICredentials
The base authentication interface for retrieving credentials for Web client authentication.
Remarks
The default behavior of the ServiceAgent is to provide the DefaultCredentialsDefaultCredentials of the current user when the Web service requires authentication and is configured to use Windows auth methods. Setting this property to a non-nullNothingnullptra null reference (Nothing in Visual Basic) value before any Web service calls are made will prevent the default credentials from being used.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.