public ScimSubAttributeExpression(string attrPath, ScimExpression parent)
        {
            if (attrPath == null)
                throw new ArgumentNullException("attrPath");

            this.AttributePath = attrPath;
            this.Parent = parent;
        }
예제 #2
0
        public ScimSubAttributeExpression(string attrPath, ScimExpression parent)
        {
            if (attrPath == null)
            {
                throw new ArgumentNullException("attrPath");
            }

            this.AttributePath = attrPath;
            this.Parent        = parent;
        }