TriAxis.RunSharp.EventGen.LockSignature C# (CSharp) Method

LockSignature() private method

private LockSignature ( ) : void
return void
        void LockSignature()
        {
            if (_eb == null)
            {
                _eb = _owner.TypeBuilder.DefineEvent(ImplementedInterface == null ? Name : ImplementedInterface.FullName + "." + Name, EventAttributes.None, _type);
                _owner.RegisterForCompletion(this);
            }
        }