Поделиться через


UrlAttribute(String) Конструктор

Определение

Создает новый экземпляр класса UrlAttribute.

public:
 UrlAttribute(System::String ^ callsiteURL);
public UrlAttribute (string callsiteURL);
[System.Security.SecurityCritical]
public UrlAttribute (string callsiteURL);
new System.Runtime.Remoting.Activation.UrlAttribute : string -> System.Runtime.Remoting.Activation.UrlAttribute
[<System.Security.SecurityCritical>]
new System.Runtime.Remoting.Activation.UrlAttribute : string -> System.Runtime.Remoting.Activation.UrlAttribute
Public Sub New (callsiteURL As String)

Параметры

callsiteURL
String

URL-адрес веб-узла вызова.

Атрибуты

Исключения

Параметр callsiteURL имеет значение null.

У непосредственно вызывающего объекта отсутствует разрешение инфраструктуры.

Примеры

В следующем примере кода показано использование конструктора UrlAttribute .

// Create UrlAttribute.
UrlAttribute^ attribute = gcnew UrlAttribute( "tcp://localhost:1234/RemoteApp" );
Console::WriteLine( "UrlAttribute value: {0}", attribute->UrlValue );
// Create a url attribute object.
UrlAttribute attribute =
    new UrlAttribute("tcp://localhost:1234/RemoteApp");
Console.WriteLine("UrlAttribute value: {0}", attribute.UrlValue);

Применяется к