Esempio n. 1
0
        private void InitParameters(SoapMessage message)
        {
            if (this._InstanceName == null)
            {
                this._InstanceName = message.GetMethodName() + " of " + this._Initializer;
                this._InstanceName = this._InstanceName.Replace('/', '-');
                this._InstanceName = this._InstanceName.Replace('\\', '-');
            }

            if (this._ExecutionWatch == null)
            {
                this._ExecutionWatch = new Stopwatch();
                this._ExecutionWatch.Start();
            }
        }