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# 类似(但不相同)。最大的区别是必须在属性名称之前使用关键字“属性”。

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