在 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 呢?