本文整理汇总了C#中HttpTransportBindingElement.GetProperty方法的典型用法代码示例。如果您正苦于以下问题:C# HttpTransportBindingElement.GetProperty方法的具体用法?C# HttpTransportBindingElement.GetProperty怎么用?C# HttpTransportBindingElement.GetProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HttpTransportBindingElement
的用法示例。
在下文中一共展示了HttpTransportBindingElement.GetProperty方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetPrpertyBindingDeliveryCapabilities
public void GetPrpertyBindingDeliveryCapabilities ()
{
var be = new HttpTransportBindingElement ();
var dc = be.GetProperty<IBindingDeliveryCapabilities> (new BindingContext (new CustomBinding (), empty_params));
Assert.IsFalse (dc.AssuresOrderedDelivery, "#1");
Assert.IsFalse (dc.QueuedDelivery, "#2");
}
示例2: GetPrpertySecurityCapabilities
public void GetPrpertySecurityCapabilities ()
{
var be = new HttpTransportBindingElement ();
var sec = be.GetProperty<ISecurityCapabilities> (new BindingContext (new CustomBinding (), empty_params));
Assert.IsNotNull (sec, "#1.1");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedRequestProtectionLevel, "#1.2");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedResponseProtectionLevel, "#1.3");
Assert.IsFalse (sec.SupportsClientAuthentication, "#1.4");
Assert.IsFalse (sec.SupportsClientWindowsIdentity, "#1.5");
Assert.IsFalse (sec.SupportsServerAuthentication , "#1.6");
be = new HttpTransportBindingElement ();
be.AuthenticationScheme = AuthenticationSchemes.Negotiate;
sec = be.GetProperty<ISecurityCapabilities> (new BindingContext (new CustomBinding (), empty_params));
Assert.IsNotNull (sec, "#2.1");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedRequestProtectionLevel, "#2.2");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedResponseProtectionLevel, "#2.3");
Assert.IsTrue (sec.SupportsClientAuthentication, "#2.4");
Assert.IsTrue (sec.SupportsClientWindowsIdentity, "#2.5");
Assert.IsTrue (sec.SupportsServerAuthentication , "#2.6");
// almost the same, only differ at SupportsServerAuth
be = new HttpTransportBindingElement ();
be.AuthenticationScheme = AuthenticationSchemes.Ntlm;
sec = be.GetProperty<ISecurityCapabilities> (new BindingContext (new CustomBinding (), empty_params));
Assert.IsNotNull (sec, "#3.1");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedRequestProtectionLevel, "#3.2");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedResponseProtectionLevel, "#3.3");
Assert.IsTrue (sec.SupportsClientAuthentication, "#3.4");
Assert.IsTrue (sec.SupportsClientWindowsIdentity, "#3.5");
Assert.IsFalse (sec.SupportsServerAuthentication , "#3.6");
be = new HttpTransportBindingElement ();
be.AuthenticationScheme = AuthenticationSchemes.Basic;
sec = be.GetProperty<ISecurityCapabilities> (new BindingContext (new CustomBinding (), empty_params));
Assert.IsNotNull (sec, "#4.1");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedRequestProtectionLevel, "#4.2");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedResponseProtectionLevel, "#4.3");
Assert.IsTrue (sec.SupportsClientAuthentication, "#4.4");
Assert.IsTrue (sec.SupportsClientWindowsIdentity, "#4.5");
Assert.IsFalse (sec.SupportsServerAuthentication , "#4.6");
be = new HttpTransportBindingElement ();
be.AuthenticationScheme = AuthenticationSchemes.Digest;
sec = be.GetProperty<ISecurityCapabilities> (new BindingContext (new CustomBinding (), empty_params));
Assert.IsNotNull (sec, "#5.1");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedRequestProtectionLevel, "#5.2");
Assert.AreEqual (ProtectionLevel.None, sec.SupportedResponseProtectionLevel, "#5.3");
Assert.IsTrue (sec.SupportsClientAuthentication, "#5.4");
Assert.IsTrue (sec.SupportsClientWindowsIdentity, "#5.5");
Assert.IsFalse (sec.SupportsServerAuthentication , "#5.6");
}
示例3: GetPropertyMessageVersion
public void GetPropertyMessageVersion ()
{
var be = new HttpTransportBindingElement ();
var mv = be.GetProperty<MessageVersion> (new BindingContext (new CustomBinding (), empty_params));
Assert.AreEqual (MessageVersion.Soap12WSAddressing10, mv, "#1");
}