Example #1
0
 public ServiceParamListEnumerator(ServiceParamList collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
Example #2
0
 public void SetRange(int index, ServiceParamList values)
 {
     GmsecPINVOKE.ServiceParamList_SetRange(swigCPtr, index, ServiceParamList.getCPtr(values));
     if (GmsecPINVOKE.SWIGPendingException.Pending)
     {
         throw GmsecPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Example #3
0
        public static ServiceParamList Repeat(ServiceParam value, int count)
        {
            global::System.IntPtr cPtr = GmsecPINVOKE.ServiceParamList_Repeat(ServiceParam.getCPtr(value), count);
            ServiceParamList      ret  = (cPtr == global::System.IntPtr.Zero) ? null : new ServiceParamList(cPtr, true);

            if (GmsecPINVOKE.SWIGPendingException.Pending)
            {
                throw GmsecPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Example #4
0
        public ServiceParamList GetRange(int index, int count)
        {
            global::System.IntPtr cPtr = GmsecPINVOKE.ServiceParamList_GetRange(swigCPtr, index, count);
            ServiceParamList      ret  = (cPtr == global::System.IntPtr.Zero) ? null : new ServiceParamList(cPtr, true);

            if (GmsecPINVOKE.SWIGPendingException.Pending)
            {
                throw GmsecPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }