WCF contract changes that affect clients

前端 未结 5 1461
南笙
南笙 2021-02-01 10:31

I was curious if someone could outline which types of WCF contract (interface) changes on the server side would break a client trying to send in a message, and why. I believe W

5条回答
  •  我在风中等你
    2021-02-01 10:46

    OK. Question. Due to wrong naming syntax (parameter is specified with capital letter), I would like to adjust some code:

    [OperationContract]
    public void Foo(string Bar){}
    

    to

    [OperationContract]
    public void Foo(string bar){}
    

    Would adjusting the capital break contract?

提交回复
热议问题