AbpIoAzureDevops.AbpIoAzureDevopsDtoExtensions.Configure C# (CSharp) 메소드

Configure() 공개 정적인 메소드

public static Configure ( ) : void
리턴 void
        public static void Configure()
        {
            OneTimeRunner.Run(() =>
            {
                /* You can add extension properties to DTOs
                 * defined in the depended modules.
                 *
                 * Example:
                 *
                 * ObjectExtensionManager.Instance
                 *   .AddOrUpdateProperty<IdentityRoleDto, string>("Title");
                 *
                 * See the documentation for more:
                 * https://docs.abp.io/en/abp/latest/Object-Extensions
                 */
            });
        }
    }

Usage Example

예제 #1
0
 public override void PreConfigureServices(ServiceConfigurationContext context)
 {
     AbpIoAzureDevopsDtoExtensions.Configure();
 }
AbpIoAzureDevopsDtoExtensions