Пример #1
0
 /// <summary>
 /// Acquire a reference on a component.
 /// Acquiring a reference on a component will prevent a component from being destroyed until
 /// the acquired reference is released(by a call to Dispose).
 /// References are internally counted so all acquired references need a matching call to
 /// release them.
 /// </summary>
 public void Acquire()
 {
     MMALNativeMethods.ComponentAcquire(this.m_handle);
 }