Click here to Skip to main content
15,884,913 members
Articles / Programming Languages / C#

Sending and playing microphone audio over network

Rate me:
Please Sign up or sign in to vote.
4.92/5 (65 votes)
3 Aug 20072 min read 521.7K   42.9K   336  
Sending and playing microphone audio over network
using System;

namespace LumiSoft.Net.POP3.Server
{
	/// <summary>
	/// Holds POP3_Message info (ID,Size,...).
	/// </summary>
	public class POP3_Message
	{
		private POP3_MessageCollection m_pOwner          = null;
		private string                 m_ID              = "";    // Holds message ID.
		private string                 m_UID             = "";
		private long                   m_Size            = 0;     // Holds message size.
		private bool                   m_MarkedForDelete = false; // Holds marked for delete flag.
		private object                 m_Tag             = null;
		
		/// <summary>
		/// Default constructor.
		/// </summary>
		/// <param name="onwer">Owner collection.</param>
		/// <param name="id">Message ID.</param>
		/// <param name="uid">Message UID.</param>
		/// <param name="size">Message size in bytes.</param>
		internal POP3_Message(POP3_MessageCollection onwer,string id,string uid,long size)
		{	
			m_pOwner = onwer;
            m_ID     = id;
            m_UID    = uid;
            m_Size   = size;
		}


		#region Properties Implementation

		/// <summary>
		/// Gets or sets message ID.
		/// </summary>
		public string ID
		{
			get{ return m_ID; }

			set{ m_ID = value; }
		}

		/// <summary>
		/// Gets or sets message UID. This UID is reported in UIDL command.
		/// </summary>
		public string UID
		{
			get{ return m_UID; }

			set{ m_UID = value; }
		}

		/// <summary>
		/// Gets or sets message size in bytes.
		/// </summary>
		public long Size
		{
			get{ return m_Size; }

			set{ m_Size = value; }
		}

		/// <summary>
		/// Gets or sets message state flag.
		/// </summary>
		public bool MarkedForDelete
		{
			get{ return m_MarkedForDelete; }

			set{ m_MarkedForDelete = value; }
		}

		/// <summary>
		/// Gets or sets user data for message.
		/// </summary>
		public object Tag
		{
			get{ return m_Tag; }

			set{ m_Tag = value; }
		}

		#endregion

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Estonia Estonia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions