Table of Contents

Class ShellDataEventArgs

Namespace
Renci.SshNet.Common
Assembly
Renci.SshNet.dll

Provides data for Shell DataReceived event.

public class ShellDataEventArgs : EventArgs

Inheritance

Inherited Members

Constructors

ShellDataEventArgs(byte[])

Initializes a new instance of the Renci.SshNet.Common.ShellDataEventArgs class.

public ShellDataEventArgs(byte[] data)

Parameters

data byte[]

The data.

ShellDataEventArgs(string)

Initializes a new instance of the Renci.SshNet.Common.ShellDataEventArgs class.

public ShellDataEventArgs(string line)

Parameters

line string

The line.

Properties

Data

Gets the data.

public byte[] Data { get; }

Property Value

byte[]

Line

Gets the line data.

public string Line { get; }

Property Value

string