mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Core.Abstractions.Environment;
|
|
using GFramework.Core.Abstractions.Rule;
|
|
|
|
namespace GFramework.Core.Extensions;
|
|
|
|
/// <summary>
|
|
/// 提供对 IContextAware 接口的环境访问扩展方法
|
|
/// </summary>
|
|
public static class ContextAwareEnvironmentExtensions
|
|
{
|
|
/// <summary>
|
|
/// 获取指定类型的环境对象
|
|
/// </summary>
|
|
/// <typeparam name="T">要获取的环境对象类型</typeparam>
|
|
/// <param name="contextAware">上下文感知对象</param>
|
|
/// <returns>指定类型的环境对象,如果无法转换则返回null</returns>
|
|
public static T? GetEnvironment<T>(this IContextAware contextAware) where T : class
|
|
{
|
|
if (contextAware is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(contextAware));
|
|
}
|
|
|
|
var context = contextAware.GetContext();
|
|
return context.GetEnvironment() as T;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取环境对象
|
|
/// </summary>
|
|
/// <param name="contextAware">上下文感知对象</param>
|
|
/// <returns>环境对象</returns>
|
|
public static IEnvironment GetEnvironment(this IContextAware contextAware)
|
|
{
|
|
if (contextAware is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(contextAware));
|
|
}
|
|
|
|
var context = contextAware.GetContext();
|
|
return context.GetEnvironment();
|
|
}
|
|
}
|