Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 443 Bytes

File metadata and controls

27 lines (18 loc) · 443 Bytes

Contract.GetCallFlags Method

Gets the call privilege of the contract.

Namespace: Neo.SmartContract.Framework.Services

Assembly: Neo.SmartContract.Framework

Syntax

public static extern byte GetCallFlags();

Example

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