Opc.Ua.Com.ComUtils.ServerInfo.Deallocate C# (CSharp) Method

Deallocate() public method

Deallocated memory allocated when the COSERVERINFO structure was created.
public Deallocate ( ) : void
return void
			public void Deallocate()
			{
				if (m_hUserName.IsAllocated) m_hUserName.Free();
				if (m_hPassword.IsAllocated) m_hPassword.Free();
				if (m_hDomain.IsAllocated)   m_hDomain.Free();
				if (m_hIdentity.IsAllocated) m_hIdentity.Free();
				if (m_hAuthInfo.IsAllocated) m_hAuthInfo.Free();
			}
			#endregion
ComUtils.ServerInfo