vote up 0 vote down star

In C# I can do this to expose a property via WCF

[ServiceContractAttribute()]
public interface IFoo
{
  int Length
  { 
    [OperationContract()] get;
    [OperationContract()] set;
  }
}

I have to do it that way since OperationContract decorates a method but not a property. I'm working with a legacy interface that I can't easily change to remove the use of properties.

How do I perform the same thing in vb.net, I can't figure out what property syntax I would use in the interface.

flag

1 Answer

vote up 1 vote down check

Unfortunately (as far as I know) VB uses a very simple property syntax for interfaces that does not allow you to specify attributes on the get or set.

link|flag
I have an existing interface I have to provide remote access to. In my C# example provided, I can define the operation contract on the property getter and setter. In a vb.net interface, it doesn't seem to allow me to put attributes on the getter and setter of a property defined in the interface. – James Thigpen Apr 21 at 18:22
Ah, I see what you mean now. I will edit my answer. – Andrew Hare Apr 21 at 18:28
That's what I was afraid of. Thanks! – James Thigpen Apr 21 at 18:35
No problem - I wish it was better news! – Andrew Hare Apr 21 at 18:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.