Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AJAX Enabled WCF Service で複数の関数を定義することは可能ですか? 例えば:
[OperationContract] public string GreetUser(string uname) { return "Hello " + uname; } public string DeleteUser(string uname) { return "Hello " + uname; }
[OperationContract]上記を追加するだけDeleteUserです。
[OperationContract]
DeleteUser
WCFサービスを使用して関数/メソッドをオーバーロードすることはできないことに注意してください。名前は一意である必要があります。OperationContract Name属性を変更して、オーバーロードされた関数/メソッドを修正できます。