Aracılığıyla paylaş


PacketCaptureFilter Constructors

Definition

Overloads

PacketCaptureFilter()

Initializes a new instance of the PacketCaptureFilter class.

PacketCaptureFilter(PcProtocol, String, String, String, String)

Initializes a new instance of the PacketCaptureFilter class.

PacketCaptureFilter()

Initializes a new instance of the PacketCaptureFilter class.

public PacketCaptureFilter ();
Public Sub New ()

Applies to

PacketCaptureFilter(PcProtocol, String, String, String, String)

Initializes a new instance of the PacketCaptureFilter class.

public PacketCaptureFilter (Microsoft.Azure.Management.Network.Fluent.Models.PcProtocol protocol = default, string localIPAddress = default, string remoteIPAddress = default, string localPort = default, string remotePort = default);
new Microsoft.Azure.Management.Network.Fluent.Models.PacketCaptureFilter : Microsoft.Azure.Management.Network.Fluent.Models.PcProtocol * string * string * string * string -> Microsoft.Azure.Management.Network.Fluent.Models.PacketCaptureFilter
Public Sub New (Optional protocol As PcProtocol = Nothing, Optional localIPAddress As String = Nothing, Optional remoteIPAddress As String = Nothing, Optional localPort As String = Nothing, Optional remotePort As String = Nothing)

Parameters

protocol
PcProtocol

Protocol to be filtered on. Possible values include: 'TCP', 'UDP', 'Any'

localIPAddress
String

Local IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5"? for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.

remoteIPAddress
String

Local IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.

localPort
String

Local port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.

remotePort
String

Remote port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.

Applies to