@@ -61,35 +61,35 @@ namespace RabbitMQ.Client.Impl
61
61
{
62
62
public abstract class BasicProperties : ContentHeaderBase , IBasicProperties
63
63
{
64
- public abstract string ContentType { get ; set ; }
65
- public abstract string ContentEncoding { get ; set ; }
66
- public abstract IDictionary Headers { get ; set ; }
67
- public abstract byte DeliveryMode { get ; set ; }
68
- public abstract byte Priority { get ; set ; }
69
- public abstract string CorrelationId { get ; set ; }
70
- public abstract string ReplyTo { get ; set ; }
71
- public abstract string Expiration { get ; set ; }
72
- public abstract string MessageId { get ; set ; }
73
- public abstract AmqpTimestamp Timestamp { get ; set ; }
74
- public abstract string Type { get ; set ; }
75
- public abstract string UserId { get ; set ; }
76
- public abstract string AppId { get ; set ; }
77
- public abstract string ClusterId { get ; set ; }
64
+ public abstract string ContentType { get ; set ; }
65
+ public abstract string ContentEncoding { get ; set ; }
66
+ public abstract IDictionary Headers { get ; set ; }
67
+ public abstract byte DeliveryMode { get ; set ; }
68
+ public abstract byte Priority { get ; set ; }
69
+ public abstract string CorrelationId { get ; set ; }
70
+ public abstract string ReplyTo { get ; set ; }
71
+ public abstract string Expiration { get ; set ; }
72
+ public abstract string MessageId { get ; set ; }
73
+ public abstract AmqpTimestamp Timestamp { get ; set ; }
74
+ public abstract string Type { get ; set ; }
75
+ public abstract string UserId { get ; set ; }
76
+ public abstract string AppId { get ; set ; }
77
+ public abstract string ClusterId { get ; set ; }
78
78
79
- public abstract void ClearContentType ( ) ;
80
- public abstract void ClearContentEncoding ( ) ;
81
- public abstract void ClearHeaders ( ) ;
82
- public abstract void ClearDeliveryMode ( ) ;
83
- public abstract void ClearPriority ( ) ;
84
- public abstract void ClearCorrelationId ( ) ;
85
- public abstract void ClearReplyTo ( ) ;
86
- public abstract void ClearExpiration ( ) ;
87
- public abstract void ClearMessageId ( ) ;
88
- public abstract void ClearTimestamp ( ) ;
89
- public abstract void ClearType ( ) ;
90
- public abstract void ClearUserId ( ) ;
91
- public abstract void ClearAppId ( ) ;
92
- public abstract void ClearClusterId ( ) ;
79
+ public abstract void ClearContentType ( ) ;
80
+ public abstract void ClearContentEncoding ( ) ;
81
+ public abstract void ClearHeaders ( ) ;
82
+ public abstract void ClearDeliveryMode ( ) ;
83
+ public abstract void ClearPriority ( ) ;
84
+ public abstract void ClearCorrelationId ( ) ;
85
+ public abstract void ClearReplyTo ( ) ;
86
+ public abstract void ClearExpiration ( ) ;
87
+ public abstract void ClearMessageId ( ) ;
88
+ public abstract void ClearTimestamp ( ) ;
89
+ public abstract void ClearType ( ) ;
90
+ public abstract void ClearUserId ( ) ;
91
+ public abstract void ClearAppId ( ) ;
92
+ public abstract void ClearClusterId ( ) ;
93
93
94
94
public abstract bool IsContentTypePresent ( ) ;
95
95
public abstract bool IsContentEncodingPresent ( ) ;
@@ -118,13 +118,13 @@ public PublicationAddress ReplyToAddress
118
118
}
119
119
}
120
120
121
- public void SetPersistent ( bool persistent )
121
+ public void SetPersistent ( bool persistent )
122
122
{
123
- if ( persistent )
124
- DeliveryMode = 2 ;
125
- else
126
- DeliveryMode = 1 ;
127
- }
123
+ if ( persistent )
124
+ DeliveryMode = 2 ;
125
+ else
126
+ DeliveryMode = 1 ;
127
+ }
128
128
129
129
public override object Clone ( )
130
130
{
0 commit comments