SenseNet.ContentRepository.UserProfile.Save C# (CSharp) 메소드

Save() 공개 메소드

public Save ( NodeSaveSettings settings ) : void
settings SenseNet.ContentRepository.Storage.NodeSaveSettings
리턴 void
        public override void Save(NodeSaveSettings settings)
        {
            var thisUser = this.User;
            if (thisUser != null) // skip when importing
            {
                this.NodeCreatedBy = thisUser;
                this.NodeModifiedBy = thisUser;
                this.CreatedBy = thisUser;
                this.ModifiedBy = thisUser;
            }
            base.Save(settings);
        }
    }