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

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

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