Version: 2021.1
LanguageEnglish
  • C#

RequiredMemberAttribute

class in UnityEngine.Scripting

/

Implemented in:UnityEngine.CoreModule

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

When a type is marked, all of it's members with [RequiredMember] will be marked.

using System;
using UnityEngine;
using UnityEngine.Scripting;

public class NewBehaviourScript : MonoBehaviour { void Start() { new UsedFoo(); } }

class UsedFoo { // Will survive managed code stripping because UsedFoo is used [RequiredMember] public int Field;

// Will survive managed code stripping because UsedFoo is used [RequiredMember] public void Method() { }

// The property, property getter method, and property setter method will survive managed code stripping because UsedFoo is used [RequiredMember] public int Property1 { get; set; }

// The property and property getter method will survive managed code stripping because UsedFoo is used public int Property2 { [RequiredMember] get; set; }

// The property and property setter method will survive managed code stripping because UsedFoo is used public int Property3 { get; [RequiredMember] set; }

// The event, the add method, and the remove method will survive managed code stripping because UsedFoo is used [RequiredMember] public event EventHandler Event; }

class UnusedFoo { // Will not survive stripping because UnusedFoo is not used [RequiredMember] public int Field;

// Will not survive stripping because UnusedFoo is not used [RequiredMember] public void Method() { }

// Will not survive stripping because UnusedFoo is not used [RequiredMember] public int Property { get; set; }

// Will not survive stripping because UnusedFoo is not used [RequiredMember] public event EventHandler Event; }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961