IPolicyImportExtension.ImportPolicy Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Определяет метод, который может импортировать утверждения пользовательской политики и добавлять реализующие элементы привязки.
public:
void ImportPolicy(System::ServiceModel::Description::MetadataImporter ^ importer, System::ServiceModel::Description::PolicyConversionContext ^ context);
public void ImportPolicy (System.ServiceModel.Description.MetadataImporter importer, System.ServiceModel.Description.PolicyConversionContext context);
abstract member ImportPolicy : System.ServiceModel.Description.MetadataImporter * System.ServiceModel.Description.PolicyConversionContext -> unit
Public Sub ImportPolicy (importer As MetadataImporter, context As PolicyConversionContext)
Параметры
- importer
- MetadataImporter
Используемый объект MetadataImporter.
- context
- PolicyConversionContext
Объект PolicyConversionContext, содержащий как утверждения политики, которые могут быть импортированы, так и коллекции элементов привязки, в которые могут быть добавлены реализующие элементы привязки.
Примеры
В следующем примере кода показано применение метода PolicyAssertionCollection.Remove для расположения, возвращения и удаления утверждения за один шаг.
#region IPolicyImporter Members
public const string name1 = "acme";
public const string ns1 = "http://Microsoft/WCF/Documentation/CustomPolicyAssertions";
/*
* Importing policy assertions usually means modifying the bindingelement stack in some way
* to support the policy assertion. The procedure is:
* 1. Find the custom assertion to import.
* 2. Insert a supporting custom bindingelement or modify the current binding element collection
* to support the assertion.
* 3. Remove the assertion from the collection. Once the ImportPolicy method has returned,
* any remaining assertions for the binding cause the binding to fail import and not be
* constructed.
*/
public void ImportPolicy(MetadataImporter importer, PolicyConversionContext context)
{
Console.WriteLine("The custom policy importer has been called.");
// Locate the custom assertion and remove it.
XmlElement customAssertion = context.GetBindingAssertions().Remove(name1, ns1);
if (customAssertion != null)
{
Console.WriteLine(
"Removed our custom assertion from the imported "
+ "assertions collection and inserting our custom binding element."
);
// Here we would add the binding modification that implemented the policy.
// This sample does not do this.
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(customAssertion.NamespaceURI + " : " + customAssertion.Name);
Console.WriteLine(customAssertion.OuterXml);
Console.ForegroundColor = ConsoleColor.Gray;
}
}
#endregion
#Region "IPolicyImporter Members"
Public Const name1 As String = "acme"
Public Const ns1 As String = "http://Microsoft/WCF/Documentation/CustomPolicyAssertions"
'
' * Importing policy assertions usually means modifying the bindingelement stack in some way
' * to support the policy assertion. The procedure is:
' * 1. Find the custom assertion to import.
' * 2. Insert a supporting custom bindingelement or modify the current binding element collection
' * to support the assertion.
' * 3. Remove the assertion from the collection. Once the ImportPolicy method has returned,
' * any remaining assertions for the binding cause the binding to fail import and not be
' * constructed.
'
Public Sub ImportPolicy(ByVal importer As MetadataImporter, ByVal context As PolicyConversionContext) Implements IPolicyImportExtension.ImportPolicy
Console.WriteLine("The custom policy importer has been called.")
' Locate the custom assertion and remove it.
Dim customAssertion As XmlElement = context.GetBindingAssertions().Remove(name1, ns1)
If customAssertion IsNot Nothing Then
Console.WriteLine("Removed our custom assertion from the imported " & "assertions collection and inserting our custom binding element.")
' Here we would add the binding modification that implemented the policy.
' This sample does not do this.
Console.ForegroundColor = ConsoleColor.Red
Console.WriteLine(customAssertion.NamespaceURI & " : " & customAssertion.Name)
Console.WriteLine(customAssertion.OuterXml)
Console.ForegroundColor = ConsoleColor.Gray
End If
End Sub
#End Region
В следующем примере кода показан файл конфигурации клиентского приложения для загрузки средства импорта настраиваемой политики при вызове System.ServiceModel.Description.MetadataResolver.
<client>
<endpoint
address="http://localhost:8080/StatefulService"
binding="wsHttpBinding"
bindingConfiguration="CustomBinding_IStatefulService"
contract="IStatefulService"
name="CustomBinding_IStatefulService" />
<metadata>
<policyImporters>
<extension type="Microsoft.WCF.Documentation.CustomPolicyImporter, PolicyExtensions"/>
</policyImporters>
</metadata>
</client>
В следующем примере кода показано применение MetadataResolver для загрузки и разрешения метаданных в объекты описания.
// Download all metadata.
ServiceEndpointCollection endpoints
= MetadataResolver.Resolve(
typeof(IStatefulService),
new EndpointAddress("http://localhost:8080/StatefulService/mex")
);
' Download all metadata.
Dim endpoints As ServiceEndpointCollection = MetadataResolver.Resolve(GetType(IStatefulService), New EndpointAddress("http://localhost:8080/StatefulService/mex"))
Комментарии
Реализуйте метод ImportPolicy
, чтобы получить утверждения политики и выполнить изменения импортированного контракта или привязки для поддержки утверждения. Обычно средство импорта политики отвечает на нахождение утверждения настраиваемой политики путем настройки или вставки элемента привязки в импортируемую привязку.
Windows Communication Foundation (WCF) передает два объекта методуImportPolicy, a MetadataImporter и a PolicyConversionContext. Обычно в объекте PolicyConversionContext уже содержатся утверждения политики для каждой области привязки.
Реализация IPolicyImportExtension выполняет следующие действия:
Располагает утверждение настраиваемой политики, за которое она отвечает, путем вызова методов GetBindingAssertions, GetMessageBindingAssertions или GetOperationBindingAssertions, в зависимости от области.
Удаляет утверждение политики из коллекции утверждений. Метод PolicyAssertionCollection.Remove располагает, возвращает и удаляет утверждение за один шаг.
Изменяет стек привязок или контракт путем добавления необходимого настраиваемого объекта BindingElement в свойство BindingElements или путем изменения свойства PolicyConversionContext.Contract.
Шаг 2 является важным. После вызова всех средств импорта политик WCF проверяет наличие утверждений политики, оставшихся. Если таковой существует, WCF предполагает, что импорт политики был неудачным и не импортирует связанную привязку.