PreserializedResourceWriter.AddBinaryFormattedResource 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.
Caution
BinaryFormatter serialization is obsolete and should not be used. See https://aka.ms/binaryformatter for more information.
Adds a resource of the specified type, represented by a byte array, that will be passed to BinaryFormatter when reading the resource.
public void AddBinaryFormattedResource (string name, byte[] value, string? typeName = default);
[System.Obsolete("BinaryFormatter serialization is obsolete and should not be used. See https://aka.ms/binaryformatter for more information.", DiagnosticId="SYSLIB0011", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public void AddBinaryFormattedResource (string name, byte[] value, string? typeName = default);
public void AddBinaryFormattedResource (string name, byte[] value, string typeName = default);
member this.AddBinaryFormattedResource : string * byte[] * string -> unit
[<System.Obsolete("BinaryFormatter serialization is obsolete and should not be used. See https://aka.ms/binaryformatter for more information.", DiagnosticId="SYSLIB0011", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
member this.AddBinaryFormattedResource : string * byte[] * string -> unit
Public Sub AddBinaryFormattedResource (name As String, value As Byte(), Optional typeName As String = Nothing)
Parameters
- name
- String
The resource name.
- value
- Byte[]
A byte array containing the value of the resource in Byte[]
form understood by BinaryFormatter.
- typeName
- String
The optional assembly qualified type name of the resource. The default value is null
.
- Attributes
Exceptions
name
or value
is null
.