예제 #1
0
 internal static QueryExpression Create(XmlQueryExpression v)
 {
     if (v == null)
     {
         return(null);
     }
     return(new QueryExpression(v));
 }
예제 #2
0
 internal static QueryExpression Create(XmlQueryExpression v)
 {
     if (v == null)
     {
         return null;
     }
     return new QueryExpression(v);
 }
예제 #3
0
파일: XmlModify.cs 프로젝트: skitsanos/WDK9
 public void addUpdateStep(XmlQueryExpression selectionExpr, string content)
 {
     DbXmlPINVOKE.XmlModify_addUpdateStep(this.swigCPtr, XmlQueryExpression.getCPtrOrThrow(selectionExpr), content);
 }
예제 #4
0
파일: XmlModify.cs 프로젝트: skitsanos/WDK9
 public void addRenameStep(XmlQueryExpression selectionExpr, string newName)
 {
     DbXmlPINVOKE.XmlModify_addRenameStep(this.swigCPtr, XmlQueryExpression.getCPtrOrThrow(selectionExpr), newName);
 }
예제 #5
0
파일: XmlModify.cs 프로젝트: skitsanos/WDK9
 public void addRemoveStep(XmlQueryExpression selectionExpr)
 {
     DbXmlPINVOKE.XmlModify_addRemoveStep(this.swigCPtr, XmlQueryExpression.getCPtrOrThrow(selectionExpr));
 }
예제 #6
0
파일: XmlModify.cs 프로젝트: skitsanos/WDK9
 public void addInsertBeforeStep(XmlQueryExpression selectionExpr, int type, string name, string content)
 {
     DbXmlPINVOKE.XmlModify_addInsertBeforeStep(this.swigCPtr, XmlQueryExpression.getCPtrOrThrow(selectionExpr), type, name, content);
 }
예제 #7
0
파일: XmlModify.cs 프로젝트: skitsanos/WDK9
 public void addAppendStep(XmlQueryExpression selectionExpr, int type, string name, string content, int location)
 {
     DbXmlPINVOKE.XmlModify_addAppendStep(this.swigCPtr, XmlQueryExpression.getCPtrOrThrow(selectionExpr), type, name, content, location);
 }
예제 #8
0
 private QueryExpression(XmlQueryExpression q)
 {
     this.qe_ = q;
 }
예제 #9
0
 private QueryExpression(XmlQueryExpression q)
 {
     this.qe_ = q;
 }