Opc.Ua.Server.ObjectTypeSource.UpdateAttributes C# (CSharp) 메소드

UpdateAttributes() 보호된 메소드

protected UpdateAttributes ( ILocalNode source ) : void
source ILocalNode
리턴 void
        protected override void UpdateAttributes(ILocalNode source)
        {
            base.UpdateAttributes(source);

            IObjectType type = source as IObjectType;

            if (type != null)
            {
                m_isAbstract = type.IsAbstract;
            }
        }