1

Micro Focus マネージド COBOL では、メソッド属性の値をどのように設定できますか? つまり。C# では

[OperationContract]
[WebGet(ResponseFormat = WebMessageFormat.Json)]
public override string[] Method

したがって、Cobol ではメソッドを次のように宣言します。

method-id MethodName public 
     attribute OperationContractAttribute
     attribute WebGetAttribute.

しかし、どのように ResponseFormat = WebMessageFormat.Json を設定するのでしょうか?

4

1 に答える 1

3

C# に似ています (ただし同一ではありません)。最大の違いは、プロパティ名の前にキーワード「property」を使用する必要があることです。

method-id MethodName public 
    attribute OperationContractAttribute
    attribute WebGetAttribute(property ResponseFormat = type WebMessageFormat::Json).
于 2013-10-25T08:40:13.373 に答える