Microsoft.Protocols.TestSuites.MS_OXORULE.ExtendedRuleActions.Size C# (CSharp) Method

Size() public method

Get the total Size of ActionData
public Size ( ) : int
return int
        public int Size()
        {
            int size = this.NamedPropertyInformation.Size()
                + sizeof(uint)
                + this.RuleActionBuffer.Size();
            return size;
        }