public void Behavior_Property()
        {
            // Arrange
            HttpBindingBehavior expectedBehavior = (HttpBindingBehavior)(-20);

            // Act
            HttpBindingBehaviorAttribute attr = new HttpBindingBehaviorAttribute(expectedBehavior);

            // Assert
            Assert.Equal(expectedBehavior, attr.Behavior);
        }
コード例 #2
0
 public HttpBindingBehaviorAttribute(HttpBindingBehavior behavior)
 {
     Behavior = behavior;
 }
コード例 #3
0
 public HttpBindingBehaviorAttribute(HttpBindingBehavior behavior)
 {
     Behavior = behavior;
 }