RobertIndie commented on code in PR #515:
URL: https://github.com/apache/pulsar-site/pull/515#discussion_r1165321199
##########
docs/client-libraries-producers.md:
##########
@@ -178,25 +224,6 @@ await producer.Send(data);
</Tabs>
````
-- Send messages with customized metadata without using the builder.
-
- ````mdx-code-block
- <Tabs groupId="lang-choice"
- defaultValue="C#"
- values={[{"label":"C#","value":"C#"}]}>
- <TabItem value="C#">
-
- ```csharp
- var data = Encoding.UTF8.GetBytes("Hello World");
- var metadata = new MessageMetadata();
- metadata["SomeKey"] = "SomeValue";
- var messageId = await producer.Send(metadata, data));
- ```
-
- </TabItem>
- </Tabs>
- ````
-
Review Comment:
I deleted it because it seems that we can illustrate it in the above code.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]