Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
637 views
in Technique[技术] by (71.8m points)

c# - Get remote IP address in Azure function

How can I get remote IP address in Azure function?

The MS_HttpContext property is not present in the properties of HttpRequestMessage, so I cannot use the solution here: How to get client IP address in Azure Functions C#?

Getting Forwarded For IP address is easy (from the headers, as shown in the link above), but how can I get the remote IP address?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

For .NET Core Functions, we usually use Microsoft.AspNetCore.Http.HttpRequest.

When we create a Http trigger template, we can see it.

    public static async Task<IActionResult> Run(
        [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req,
        ILogger log)

Then get remote IP

var remoteAddress = req.HttpContext.Connection.RemoteIpAddress;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...