2 implementations of GetProperty
System.ServiceModel.Primitives (2)
netstandard.cs (2)
440public T GetProperty<T>() where T : class { return default; } 1334public virtual T GetProperty<T>() where T : class { return default; }
2 references to GetProperty
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
42return this.innerChannelFactory.GetProperty<T>();
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
69return _innerFactory.GetProperty<T>();