WebPermission.Copy Метод

Определение

Создает копию WebPermission.

public:
 override System::Security::IPermission ^ Copy();
public override System.Security.IPermission Copy ();
override this.Copy : unit -> System.Security.IPermission
Public Overrides Function Copy () As IPermission

Возвращаемое значение

Новый экземпляр класса WebPermission, имеющий те же значения, что и исходный.

Примеры

В следующем примере показано, как создать второй экземпляр с WebPermission помощью Copy. Этот второй экземпляр идентичен первому.

// Create another WebPermission instance that is the copy of the above WebPermission instance.
WebPermission^ myWebPermission2 = (WebPermission^)(myWebPermission1->Copy());

// Check whether all callers higher in the call stack have been granted the permissionor not.
myWebPermission2->Demand();
 // Create another WebPermission instance that is the copy of the above WebPermission instance.
  WebPermission myWebPermission2 = (WebPermission) myWebPermission1.Copy();

 // Check whether all callers higher in the call stack have been granted the permissionor not.
 myWebPermission2.Demand();
' Create another WebPermission instance that is the copy of the above WebPermission instance.
Dim myWebPermission2 As WebPermission = CType(myWebPermission1.Copy(), WebPermission)

' Check whether all callers higher in the call stack have been granted the permissionor not.
myWebPermission2.Demand()

Комментарии

Объект , IPermission возвращаемый этим методом, представляет тот же доступ к ресурсам, что и исходный WebPermission. Этот метод переопределяет Copy и реализуется для поддержки IPermission интерфейса .

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