Class SharedAccessSignatureElement
- Namespace
- Microsoft.ServiceBus.Configuration
- Assembly
- Microsoft.ServiceBus.dll
Represents a shared access signature element.
public class SharedAccessSignatureElement : ConfigurationElement
- Inheritance
-
SharedAccessSignatureElement
Properties
Key
Gets or sets the shared access key.
public string Key { get; set; }
Property Value
- string
The shared access key.
KeyName
Gets or sets the shared access key name.
public string KeyName { get; set; }
Property Value
- string
The shared access key name.
Properties
Gets the collection of configuration properties.
protected override ConfigurationPropertyCollection Properties { get; }
Property Value
- ConfigurationPropertyCollection
The collection of configuration properties.
TokenScope
Gets or sets the token scope associated with the element.
public TokenScope TokenScope { get; set; }
Property Value
- TokenScope
The token scope associated with the element.
Methods
CopyFrom(SharedAccessSignatureElement)
Copies the specified element from this configuration element.
public void CopyFrom(SharedAccessSignatureElement source)
Parameters
source
SharedAccessSignatureElementThe source to copy the contents from.