Ejemplo n.º 1
0
        private void CreateFunctionExecution(object sender, EventArgs args)
        {
            pol.ApplyElement            apply = new pol.ApplyElement("urn:new_function", new pol.ExpressionReadWriteCollection(), Xacml.XacmlVersion.Version11);
            TreeNodes.FunctionExecution node  = new TreeNodes.FunctionExecution(apply);

            tvwCondition.Nodes.Add(node);
            _condition.Arguments.Add(apply);
        }
Ejemplo n.º 2
0
        private void CreateFunctionExecutionFromFunction(object sender, EventArgs args)
        {
            TreeNodes.FunctionExecution func        = (TreeNodes.FunctionExecution)tvwCondition.SelectedNode;
            pol.ApplyBaseReadWrite      parentApply = func.ApplyBaseDefinition;

            pol.ApplyElement            apply = new pol.ApplyElement("urn:new_function", new pol.ExpressionReadWriteCollection(), Xacml.XacmlVersion.Version11);
            TreeNodes.FunctionExecution node  = new TreeNodes.FunctionExecution(apply);

            func.Nodes.Add(node);
            parentApply.Arguments.Add(apply);
        }
Ejemplo n.º 3
0
        private void CreateFunctionExecutionFromFunction( object sender, EventArgs args )
        {
            TreeNodes.FunctionExecution func = (TreeNodes.FunctionExecution)tvwCondition.SelectedNode;
            pol.ApplyBaseReadWrite parentApply = func.ApplyBaseDefinition;

            pol.ApplyElement apply = new pol.ApplyElement("urn:new_function", new pol.ExpressionReadWriteCollection(), Xacml.XacmlVersion.Version11);
            TreeNodes.FunctionExecution node = new TreeNodes.FunctionExecution( apply );

            func.Nodes.Add( node );
            parentApply.Arguments.Add( apply );
        }
Ejemplo n.º 4
0
        private void CreateFunctionExecution( object sender, EventArgs args )
        {
            pol.ApplyElement apply = new pol.ApplyElement("urn:new_function", new pol.ExpressionReadWriteCollection(), Xacml.XacmlVersion.Version11);
            TreeNodes.FunctionExecution node = new TreeNodes.FunctionExecution( apply );

            tvwCondition.Nodes.Add( node );
            _condition.Arguments.Add( apply );
        }