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;
55
66public static void Run ( string blob , out string output , TraceWriter log )
77{
8- log . Verbose ( $ "CSharp Blob trigger function processed a blob. Blob={ blob } ") ;
8+ log . Verbose ( $ "C# Blob trigger function processed a blob. Blob={ blob } ") ;
99
1010 output = blob ;
1111}
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ using System.Threading.Tasks;
66using System . Diagnostics ;
77using Microsoft . Azure . WebJobs . Host ;
88
9- public static Task < HttpResponseMessage > Run ( HttpRequestMessage input , TraceWriter log )
9+ public static Task < HttpResponseMessage > Run ( HttpRequestMessage req , TraceWriter log )
1010{
11- var queryParamms = input . GetQueryNameValuePairs ( )
11+ var queryParamms = req . GetQueryNameValuePairs ( )
1212 . ToDictionary ( p => p . Key , p => p . Value , StringComparer . OrdinalIgnoreCase ) ;
1313
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 ) ) ;
1515
1616 HttpResponseMessage res = null ;
1717 string name ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ using Microsoft.Azure.WebJobs.Host;
55
66public static void Run ( TimerInfo input , out string message , TraceWriter log )
77{
8- log . Verbose ( "CSharp Timer trigger function executed." ) ;
8+ log . Verbose ( "C# Timer trigger function executed." ) ;
99
1010 message = $ "Trigger function executed at { DateTime . Now } ";
1111}
You can’t perform that action at this time.
0 commit comments