File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ using Microsoft.Azure.WebJobs.Host;
5
5
6
6
public static void Run ( string blob , out string output , TraceWriter log )
7
7
{
8
- log . Verbose ( $ "CSharp Blob trigger function processed a blob. Blob={ blob } ") ;
8
+ log . Verbose ( $ "C# Blob trigger function processed a blob. Blob={ blob } ") ;
9
9
10
10
output = blob ;
11
11
}
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ using System.Threading.Tasks;
6
6
using System . Diagnostics ;
7
7
using Microsoft . Azure . WebJobs . Host ;
8
8
9
- public static Task < HttpResponseMessage > Run ( HttpRequestMessage input , TraceWriter log )
9
+ public static Task < HttpResponseMessage > Run ( HttpRequestMessage req , TraceWriter log )
10
10
{
11
- var queryParamms = input . GetQueryNameValuePairs ( )
11
+ var queryParamms = req . GetQueryNameValuePairs ( )
12
12
. ToDictionary ( p => p . Key , p => p . Value , StringComparer . OrdinalIgnoreCase ) ;
13
13
14
- log . Verbose ( string . Format ( "CSharp HTTP trigger function processed a request. Name={0}" , input . RequestUri ) ) ;
14
+ log . Verbose ( string . Format ( "C# HTTP trigger function processed a request. Name={0}" , req . RequestUri ) ) ;
15
15
16
16
HttpResponseMessage res = null ;
17
17
string name ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ using Microsoft.Azure.WebJobs.Host;
5
5
6
6
public static void Run ( TimerInfo input , out string message , TraceWriter log )
7
7
{
8
- log . Verbose ( "CSharp Timer trigger function executed." ) ;
8
+ log . Verbose ( "C# Timer trigger function executed." ) ;
9
9
10
10
message = $ "Trigger function executed at { DateTime . Now } ";
11
11
}
You can’t perform that action at this time.
0 commit comments