Show / Hide Table of Contents

Contract.GetCallFlags 方法

获取合约的调用权限 Flag

命名空间: Neo.SmartContract.Framework.Services

程序集:Neo.SmartContract.Framework

语法

public static extern byte GetCallFlags();

示例

public class Contract1 : SmartContract.Framework.SmartContract
{
        public static int GetCallFlags()
        {
            return Contract.GetCallFlags();
        }
}

返回上级