JsonValue.Save Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Save(Stream) | |
Save(TextWriter) |
Save(Stream)
- Source:
- JsonValue.cs
public:
virtual void Save(System::IO::Stream ^ stream);
public virtual void Save (System.IO.Stream stream);
abstract member Save : System.IO.Stream -> unit
override this.Save : System.IO.Stream -> unit
Public Overridable Sub Save (stream As Stream)
Parameters
- stream
- Stream
Remarks
Note
The System.Json namespace was designed for Silverlight, which is no longer supported. For processing JSON, we recommend using APIs in the System.Text.Json namespace instead.
Applies to
Save(TextWriter)
- Source:
- JsonValue.cs
public:
virtual void Save(System::IO::TextWriter ^ textWriter);
public virtual void Save (System.IO.TextWriter textWriter);
abstract member Save : System.IO.TextWriter -> unit
override this.Save : System.IO.TextWriter -> unit
Public Overridable Sub Save (textWriter As TextWriter)
Parameters
- textWriter
- TextWriter
Remarks
Note
The System.Json namespace was designed for Silverlight, which is no longer supported. For processing JSON, we recommend using APIs in the System.Text.Json namespace instead.
Applies to
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.