diff --git a/LibreMetaverse.Voice/VoiceAccount.cs b/LibreMetaverse.Voice/VoiceAccount.cs
index 4eaff06d..2a2ab4f3 100644
--- a/LibreMetaverse.Voice/VoiceAccount.cs
+++ b/LibreMetaverse.Voice/VoiceAccount.cs
@@ -35,21 +35,21 @@ namespace LibreMetaverse.Voice
/// This is used to login a specific user account(s). It may only be called after
/// Connector initialization has completed successfully
///
- /// Handle returned from successful Connector ‘create’ request
+ /// Handle returned from successful Connector �create� request
/// User's account name
/// User's account password
- /// Values may be “AutoAnswer” or “VerifyAnswer”
+ /// Values may be �AutoAnswer� or �VerifyAnswer�
/// ""
/// This is an integer that specifies how often
/// the daemon will send participant property events while in a channel. If this is not set
- /// the default will be “on state change”, which means that the events will be sent when
+ /// the default will be �on state change�, which means that the events will be sent when
/// the participant starts talking, stops talking, is muted, is unmuted.
/// The valid values are:
- /// 0 – Never
- /// 5 – 10 times per second
- /// 10 – 5 times per second
- /// 50 – 1 time per second
- /// 100 – on participant state change (this is the default)
+ /// 0 � Never
+ /// 5 � 10 times per second
+ /// 10 � 5 times per second
+ /// 50 � 1 time per second
+ /// 100 � on participant state change (this is the default)
/// false
///
public int AccountLogin(string ConnectorHandle, string AccountName, string AccountPassword, string AudioSessionAnswerMode, string AccountURI, int ParticipantPropertyFrequency, bool EnableBuddiesAndPresence)
@@ -69,7 +69,7 @@ namespace LibreMetaverse.Voice
///
/// This is used to logout a user session. It should only be called with a valid AccountHandle.
///
- /// Handle returned from successful Connector ‘login’ request
+ /// Handle returned from successful Connector �login� request
///
public int AccountLogout(string AccountHandle)
{
diff --git a/LibreMetaverse.Voice/VoiceConnector.cs b/LibreMetaverse.Voice/VoiceConnector.cs
index 77241667..d9c3d41e 100644
--- a/LibreMetaverse.Voice/VoiceConnector.cs
+++ b/LibreMetaverse.Voice/VoiceConnector.cs
@@ -65,7 +65,7 @@ namespace LibreMetaverse.Voice
/// Shutdown Connector -- Should be called when the application is shutting down
/// to gracefully release resources
///
- /// Handle returned from successful Connector ‘create’ request
+ /// Handle returned from successful Connector �create� request
public int ConnectorInitiateShutdown(string ConnectorHandle)
{
string RequestXML = VoiceGateway.MakeXML("ConnectorHandle", ConnectorHandle);
@@ -75,7 +75,7 @@ namespace LibreMetaverse.Voice
///
/// Mute or unmute the microphone
///
- /// Handle returned from successful Connector ‘create’ request
+ /// Handle returned from successful Connector �create� request
/// true (mute) or false (unmute)
public int ConnectorMuteLocalMic(string ConnectorHandle, bool Mute)
{
@@ -88,7 +88,7 @@ namespace LibreMetaverse.Voice
///
/// Mute or unmute the speaker
///
- /// Handle returned from successful Connector ‘create’ request
+ /// Handle returned from successful Connector �create� request
/// true (mute) or false (unmute)
public int ConnectorMuteLocalSpeaker(string ConnectorHandle, bool Mute)
{
@@ -101,9 +101,9 @@ namespace LibreMetaverse.Voice
///
/// Set microphone volume
///
- /// Handle returned from successful Connector ‘create’ request
+ /// Handle returned from successful Connector �create� request
/// The level of the audio, a number between -100 and 100 where
- /// 0 represents ‘normal’ speaking volume
+ /// 0 represents �normal� speaking volume
public int ConnectorSetLocalMicVolume(string ConnectorHandle, int Value)
{
StringBuilder sb = new StringBuilder();
@@ -115,9 +115,9 @@ namespace LibreMetaverse.Voice
///
/// Set local speaker volume
///
- /// Handle returned from successful Connector ‘create’ request
+ /// Handle returned from successful Connector �create� request
/// The level of the audio, a number between -100 and 100 where
- /// 0 represents ‘normal’ speaking volume
+ /// 0 represents �normal� speaking volume
public int ConnectorSetLocalSpeakerVolume(string ConnectorHandle, int Value)
{
StringBuilder sb = new StringBuilder();
diff --git a/LibreMetaverse.Voice/VoiceSession.cs b/LibreMetaverse.Voice/VoiceSession.cs
index 72392751..846cd9fb 100644
--- a/LibreMetaverse.Voice/VoiceSession.cs
+++ b/LibreMetaverse.Voice/VoiceSession.cs
@@ -156,21 +156,21 @@ namespace LibreMetaverse.Voice
///
/// Create a Session
/// Sessions typically represent a connection to a media session with one or more
- /// participants. This is used to generate an ‘outbound’ call to another user or
+ /// participants. This is used to generate an �outbound� call to another user or
/// channel. The specifics depend on the media types involved. A session handle is
/// required to control the local user functions within the session (or remote
/// users if the current account has rights to do so). Currently creating a
/// session automatically connects to the audio media, there is no need to call
/// Session.Connect at this time, this is reserved for future use.
///
- /// Handle returned from successful Connector ‘create’ request
+ /// Handle returned from successful Connector �create� request
/// This is the URI of the terminating point of the session (ie who/what is being called)
/// This is the display name of the entity being called (user or channel)
/// Only needs to be supplied when the target URI is password protected
/// This indicates the format of the password as passed in. This can either be
- /// “ClearText” or “SHA1UserName”. If this element does not exist, it is assumed to be “ClearText”. If it is
- /// “SHA1UserName”, the password as passed in is the SHA1 hash of the password and username concatenated together,
- /// then base64 encoded, with the final “=” character stripped off.
+ /// �ClearText� or �SHA1UserName�. If this element does not exist, it is assumed to be �ClearText�. If it is
+ /// �SHA1UserName�, the password as passed in is the SHA1 hash of the password and username concatenated together,
+ /// then base64 encoded, with the final �=� character stripped off.
///
///
///
@@ -237,9 +237,9 @@ namespace LibreMetaverse.Voice
}
///
- /// This is used to ‘end’ an established session (i.e. hang-up or disconnect).
+ /// This is used to �end� an established session (i.e. hang-up or disconnect).
///
- /// Handle returned from successful Session ‘create’ request or a SessionNewEvent
+ /// Handle returned from successful Session �create� request or a SessionNewEvent
///
public int SessionTerminate(string SessionHandle)
{
@@ -250,7 +250,7 @@ namespace LibreMetaverse.Voice
///
/// Set the combined speaking and listening position in 3D space.
///
- /// Handle returned from successful Session ‘create’ request or a SessionNewEvent
+ /// Handle returned from successful Session �create� request or a SessionNewEvent
/// Speaking position
/// Listening position
///
@@ -318,9 +318,9 @@ namespace LibreMetaverse.Voice
///
/// Set User Volume for a particular user. Does not affect how other users hear that user.
///
- /// Handle returned from successful Session ‘create’ request or a SessionNewEvent
+ /// Handle returned from successful Session �create� request or a SessionNewEvent
///
- /// The level of the audio, a number between -100 and 100 where 0 represents ‘normal’ speaking volume
+ /// The level of the audio, a number between -100 and 100 where 0 represents �normal� speaking volume
///
public int SessionSetParticipantVolumeForMe(string SessionHandle, string ParticipantURI, int Volume)
{