Example #1
0
 private AprTimeExp(apr_time_exp_t *ptr)
 {
     mTimeExp = ptr;
 }
Example #2
0
 public AprTimeExp(out GCHandle handle)
 {
     handle = GCHandle.Alloc(new apr_time_exp_t(),GCHandleType.Pinned);
     mTimeExp = (apr_time_exp_t *)handle.AddrOfPinnedObject().ToPointer();
 }
Example #3
0
 public AprTimeExp(IntPtr ptr)
 {
     mTimeExp = (apr_time_exp_t *)ptr.ToPointer();
 }
Example #4
0
 public void ClearPtr()
 {
     mTimeExp = null;
 }
Example #5
0
 public void ClearPtr()
 {
     mTimeExp = null;
 }
Example #6
0
 public AprTimeExp(IntPtr ptr)
 {
     mTimeExp = (apr_time_exp_t *)ptr.ToPointer();
 }
Example #7
0
 public AprTimeExp(out GCHandle handle)
 {
     handle   = GCHandle.Alloc(new apr_time_exp_t(), GCHandleType.Pinned);
     mTimeExp = (apr_time_exp_t *)handle.AddrOfPinnedObject().ToPointer();
 }
Example #8
0
 private AprTimeExp(apr_time_exp_t *ptr)
 {
     mTimeExp = ptr;
 }