Files
csharp/src/KubernetesClient/StreamType.cs
Boshi Lian 16845bae1d Style fix1 (#512)
* fix SA1505 and SA1508

* fix SA1116

* fix SA1009

* fix SA1019

* fix SA1127

* fix SA1128

* fix SA1134

* fix indent

* allow CA2227

* fix CA1810

* using clean up

* fix naming

* fix CA1806

* fix await

* Revert "fix CA1806"

This reverts commit a3b465087fdaf26ec461272373ee9810a90de2cc.

* fix dotnet format

* allow SA1009
2020-11-01 12:24:51 -08:00

21 lines
591 B
C#

namespace k8s
{
/// <summary>
/// When creating a <see cref="StreamDemuxer"/> object, specify <see cref="StreamType"/> to properly handle
/// the underlying communication.
/// </summary>
public enum StreamType
{
/// <summary>
/// This <see cref="StreamDemuxer"/> object is used to stream a remote command or attach to a remote
/// container.
/// </summary>
RemoteCommand,
/// <summary>
/// This <see cref="StreamDemuxer"/> object is used in port forwarding.
/// </summary>
PortForward,
}
}