Class Property
- Namespace
- Microsoft.ServiceBus.Management
- Assembly
- Microsoft.ServiceBus.dll
Represents the service bus property.
[DataContract(Name = "Property", Namespace = "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect")]
public class Property : ICloneable
- Inheritance
-
Property
- Implements
- Inherited Members
Constructors
Property()
public Property()
Fields
Serializer
The serializer associated with the property.
public static readonly DataContractSerializer Serializer
Field Value
- DataContractSerializer
Properties
Created
Gets or sets when the property was created.
[DataMember(Name = "Created", IsRequired = false, Order = 102, EmitDefaultValue = false)]
public DateTime Created { get; }
Property Value
- DateTime
The date when the property was created.
Modified
Gets or sets when the property was modified.
[DataMember(Name = "Modified", IsRequired = false, Order = 103, EmitDefaultValue = false)]
public DateTime Modified { get; }
Property Value
- DateTime
The date when the property was modified.
Name
Gets or sets the name of the property.
[DataMember(Name = "Name", IsRequired = true, Order = 100)]
public string Name { get; set; }
Property Value
- string
The name of the property.
Revision
Gets or sets the version of the property.
[DataMember(Name = "Revision", IsRequired = false, Order = 104, EmitDefaultValue = false)]
public long Revision { get; set; }
Property Value
- long
The version of the property.
Value
Gets or sets the property value.
[DataMember(Name = "Value", IsRequired = true, Order = 101)]
public string Value { get; set; }
Property Value
- string
The property value.
Methods
Clone()
Creates a copy of this instance.
public object Clone()
Returns
- object
A created copy of this instance.