在WCF Web服务中,我想在请求输入数据的某些情况下隐藏输出元素。例如,对于下面的输出,在某些情况下如何隐藏PortID元素
<note>
<to>Someone</to>
<from>Usr</from>
<PortID>Reminder</PortID>
<body>test message</body>
</note>
具体来说,我想将其更改为以下消息
<note>
<to>Someone</to>
<from>Usr</from>
<body>test message</body>
</note>