Class EmbedFileByte
Struct for storing byte[] of embedding file with configuration
Inheritance
System.Object
EmbedFileByte
Assembly: IronPdf.dll
Syntax
public sealed class EmbedFileByte : ValueType
Constructors
EmbedFileByte(in Byte[], EmbedFileConfiguration)
Struct for storing byte[] of embedding file with configuration
Declaration
public EmbedFileByte(in byte[] FileBytes, EmbedFileConfiguration EmbedFileConfiguration)
Parameters
Type |
Name |
Description |
System.Byte[] |
FileBytes |
byte[] of embedding file
|
EmbedFileConfiguration |
EmbedFileConfiguration |
configuration of embedding file
|
Properties
EmbedFileConfiguration
configuration of embedding file
Declaration
public EmbedFileConfiguration EmbedFileConfiguration { get; set; }
Property Value
FileBytes
Declaration
public byte[] FileBytes { get; set; }
Property Value
Type |
Description |
System.Byte[] |
|
Methods
Deconstruct(out Byte[], out EmbedFileConfiguration)
Declaration
public void Deconstruct(out byte[] FileBytes, out EmbedFileConfiguration EmbedFileConfiguration)
Parameters
Equals(EmbedFileByte)
Declaration
public bool Equals(EmbedFileByte other)
Parameters
Returns
Type |
Description |
System.Boolean |
|
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
System.Object |
obj |
|
Returns
Type |
Description |
System.Boolean |
|
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type |
Description |
System.Int32 |
|
ToString()
Declaration
public override string ToString()
Returns
Type |
Description |
System.String |
|
Operators
Equality(EmbedFileByte, EmbedFileByte)
Declaration
public static bool operator ==(EmbedFileByte left, EmbedFileByte right)
Parameters
Returns
Type |
Description |
System.Boolean |
|
Inequality(EmbedFileByte, EmbedFileByte)
Declaration
public static bool operator !=(EmbedFileByte left, EmbedFileByte right)
Parameters
Returns
Type |
Description |
System.Boolean |
|
Implements
System.IEquatable<>