Table of Contents

Class SharedSecretElement

Namespace
Microsoft.ServiceBus.Configuration
Assembly
Microsoft.ServiceBus.dll

A configuration element that specifies the credentials for a service or client endpoint that is configured to use the SharedSecretTokenProvider credential type.

public class SharedSecretElement : ConfigurationElement
Inheritance
SharedSecretElement

Properties

IssuerName

Gets or sets the issuer name.

public string IssuerName { get; set; }

Property Value

string

The issuer name.

IssuerSecret

Gets or sets the issuer secret key.

public string IssuerSecret { get; set; }

Property Value

string

The issuer secret key.

Properties

Gets the properties of this configuration element that contain the issuer name and the issuer secret key.

protected override ConfigurationPropertyCollection Properties { get; }

Property Value

ConfigurationPropertyCollection

The properties of this configuration element that contain the issuer name and the issuer secret key.

TokenScope

Gets or sets the token scope.

public TokenScope TokenScope { get; set; }

Property Value

TokenScope

The token scope.

Methods

CopyFrom(SharedSecretElement)

Copies the contents of the specified shared secret configuration element to this configuration element.

public void CopyFrom(SharedSecretElement source)

Parameters

source SharedSecretElement

The shared secret configuration element to be copied.