Gets or sets the transferor address. The application MUST verify the identify of the transferor before setting this property. See remarks section of help for more information.

Namespace:  Microsoft.Rtc.Collaboration
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Property 
Transferor 
As 
String
C#
public 
string 
Transferor { 
get; 
set; }
Visual C++
public:
property 
String^ 
Transferor {
	
String^ 
get ();
	
void 
set (
String^ 
value);
}
JavaScript
function get_
transferor();
function set_
transferor(
value);

Remarks

This value will be used in the outgoing invite request to set the Referred-By header. If this value is not set no Referred-By header will be added. If a server platform and application endpoint are configured to use MTLS, this value will be signed in the future version of the platform in the outgoing Referred-By header to ensure the value is not altered during transport.

It is important for applications to verify the accuracy of the information given in this property and not simply copy from another source. This may be accomplished by PIN code, logon credentials, or by verifying against a database.

Exceptions

Exception Condition
ArgumentNullException Thrown when the value set is null.
ArgumentException Thrown when the string is not a well formed URI string.

See Also