Элемент проекта адаптера WCF Lob создает этот файл.Я хочу сохранить значения SCHEME
и SERVICENAMSPACE
в machine.config
или BTSNTSvc64.exe.config
Возможно ли это?Если нет, то как я могу сохранить настройки?
using Microsoft.ServiceModel.Channels.Common;
/// -----------------------------------------------------------------------------------------------------------
/// Module : MyFirstInboundAdapter.cs
/// Description : The main adapter class which inherits from Adapter
/// -----------------------------------------------------------------------------------------------------------
using System;
using System.ServiceModel.Description;
namespace MyFirstInboundAdapterApp
{
public class MyFirstInboundAdapter : Adapter
{
// Scheme associated with the adapter
internal const string SCHEME = "TheDefaultScheme";
// Namespace for the proxy that will be generated from the adapter schema
internal const string SERVICENAMESPACE = "TheDefaultScheme://FirstInboundAdapterNamespace;
// Initializes the AdapterEnvironmentSettings class
static AdapterEnvironmentSettings environmentSettings = new AdapterEnvironmentSettings();
}
}