共用方式為


InboundEndpoint Constructors

Definition

Overloads

InboundEndpoint()

Initializes a new instance of the InboundEndpoint class.

InboundEndpoint(String, InboundEndpointProtocol, String, String, Int32, Int32)

Initializes a new instance of the InboundEndpoint class.

InboundEndpoint()

Source:
InboundEndpoint.cs

Initializes a new instance of the InboundEndpoint class.

public InboundEndpoint ();
Public Sub New ()

Applies to

InboundEndpoint(String, InboundEndpointProtocol, String, String, Int32, Int32)

Source:
InboundEndpoint.cs

Initializes a new instance of the InboundEndpoint class.

public InboundEndpoint (string name, Microsoft.Azure.Batch.Protocol.Models.InboundEndpointProtocol protocol, string publicIPAddress, string publicFQDN, int frontendPort, int backendPort);
new Microsoft.Azure.Batch.Protocol.Models.InboundEndpoint : string * Microsoft.Azure.Batch.Protocol.Models.InboundEndpointProtocol * string * string * int * int -> Microsoft.Azure.Batch.Protocol.Models.InboundEndpoint
Public Sub New (name As String, protocol As InboundEndpointProtocol, publicIPAddress As String, publicFQDN As String, frontendPort As Integer, backendPort As Integer)

Parameters

name
String

The name of the endpoint.

protocol
InboundEndpointProtocol

The protocol of the endpoint.

publicIPAddress
String

The public IP address of the Compute Node.

publicFQDN
String

The public fully qualified domain name for the Compute Node.

frontendPort
Int32

The public port number of the endpoint.

backendPort
Int32

The backend port number of the endpoint.

Applies to