ServiceBus.Extensions.PromotedProperties
This package is for use with Service Bus WCF programing model. The extensions enables you to mark parts of your data model [DataContract] as promoted properties. These marked properties are then automatically lifted and promoted in the outgoing BrokeredMessage. Sample usage: ========== public class Order { public double Amount { get; set; } [PromotedProperty] public string ShipCity { get; set; } } [ServiceContract] public interface IOrderService { [OperationContract(Name = "SubmitFlat", IsOneWay = true)] [PropertyPromotionBehavior] void Submit(double amount, [PromotedProperty] string shipCity); [OperationContract(IsOneWay = true)] [PropertyPromotionBehavior] void Submit(Order order); } See following blog post for implementation details. http://zamd.net/2011/05/25/pubsub-with-wcf-part-2/
Activity
- Latest release
- 14y ago
- Total releases
- 2
- Cadence
- ~daily
- Last 12 months
- 0
Details
- First release
- Jul 18, 2012
| Version | Released | |
|---|---|---|
1.0.1
patch
|
1.0.1
patch
Dependencies (1)
|
|
1.0.0
initial
|
1.0.0
initial
Dependencies (1)
|