Replies: 1 comment
-
I managed to find a workaround with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to serialize
System.Uri
as a string. My implementation ofWriteYaml
currently looks like this.However, when
value
is null I'm not sure what the correctScalar
to emit is. Emittingnull
ornew Scalar(null)
has only resulted in errors. I would like the resulting YAML field to just be left blank, i.e.ControllerAddress: \n
. How would I accomplish this?Beta Was this translation helpful? Give feedback.
All reactions