FunctionContextLoggerExtensions.GetLogger メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GetLogger(FunctionContext, String) |
指定した の新しい ILogger インスタンスを作成します FunctionContext。 |
GetLogger<T>(FunctionContext) |
指定した型のフル ネームを使用して、新しい ILogger インスタンスを作成します。 |
GetLogger(FunctionContext, String)
指定した の新しい ILogger インスタンスを作成します FunctionContext。
public static Microsoft.Extensions.Logging.ILogger GetLogger (this Microsoft.Azure.Functions.Worker.FunctionContext context, string categoryName);
static member GetLogger : Microsoft.Azure.Functions.Worker.FunctionContext * string -> Microsoft.Extensions.Logging.ILogger
<Extension()>
Public Function GetLogger (context As FunctionContext, categoryName As String) As ILogger
パラメーター
- context
- FunctionContext
コンテキスト。
- categoryName
- String
ロガーによって生成されたメッセージのカテゴリ名。
戻り値
適用対象
GetLogger<T>(FunctionContext)
指定した型のフル ネームを使用して、新しい ILogger インスタンスを作成します。
public static Microsoft.Extensions.Logging.ILogger<T> GetLogger<T> (this Microsoft.Azure.Functions.Worker.FunctionContext context);
static member GetLogger : Microsoft.Azure.Functions.Worker.FunctionContext -> Microsoft.Extensions.Logging.ILogger<'T>
<Extension()>
Public Function GetLogger(Of T) (context As FunctionContext) As ILogger(Of T)
型パラメーター
- T
パラメーター
- context
- FunctionContext
コンテキスト。
戻り値
ILogger<T>
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET