Class StreamWithAttributes
Inheritance
StreamWithAttributes
Assembly: SharpSevenZip.dll
Syntax
public record StreamWithAttributes : IEquatable<StreamWithAttributes>
Constructors
|
Edit this page
View Source
StreamWithAttributes(Stream, DateTime?, DateTime?, DateTime?)
Declaration
public StreamWithAttributes(Stream Stream, DateTime? CreationTime = null, DateTime? LastWriteTime = null, DateTime? LastAccessTime = null)
Parameters
Properties
|
Edit this page
View Source
CreationTime
Declaration
public DateTime? CreationTime { get; init; }
Property Value
|
Edit this page
View Source
LastAccessTime
Declaration
public DateTime? LastAccessTime { get; init; }
Property Value
|
Edit this page
View Source
LastWriteTime
Declaration
public DateTime? LastWriteTime { get; init; }
Property Value
|
Edit this page
View Source
Stream
Declaration
public Stream Stream { get; init; }
Property Value
Implements