Gets or sets the Credentials currently being used by the Agent to access the Web service.
Public Property Credentials As ICredentials
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)
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.