TriAxis.RunSharp.EventGen.LockSignature C# (CSharp) 메소드

LockSignature() 개인적인 메소드

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