本文整理汇总了C#中System.Collections.Generic.EnableUnqualifiedNameCall方法的典型用法代码示例。如果您正苦于以下问题:C# System.Collections.Generic.EnableUnqualifiedNameCall方法的具体用法?C# System.Collections.Generic.EnableUnqualifiedNameCall怎么用?C# System.Collections.Generic.EnableUnqualifiedNameCall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Collections.Generic
的用法示例。
在下文中一共展示了System.Collections.Generic.EnableUnqualifiedNameCall方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExtensionResolver_Works_UnqualifiedNameTemplate
public void ExtensionResolver_Works_UnqualifiedNameTemplate()
{
// Arrange
IEdmModel model = GetEdmModel();
HttpConfiguration config = new[] { typeof(ParserExtenstionCustomers2Controller) }.GetHttpConfiguration();
config.EnableUnqualifiedNameCall(true);
config.MapODataServiceRoute("odata", "odata", model);
HttpClient client = new HttpClient(new HttpServer(config));
// Act
HttpRequestMessage request = new HttpRequestMessage(
HttpMethod.Get,
"http://localhost/odata/ParserExtenstionCustomers2/GetCustomerTitleById(id=32)");
HttpResponseMessage response = client.SendAsync(request).Result;
// Assert
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
Assert.Equal("GetCustomerTitleById/32", (response.Content as ObjectContent<string>).Value);
}
示例2: GetConfiguration
private static HttpConfiguration GetConfiguration(bool caseInsensitive, bool unqualifiedNameCall)
{
IEdmModel model = ODataRoutingModel.GetModel();
HttpConfiguration config = new[]
{
typeof(MetadataController),
typeof(ProductsController),
typeof(RoutingCustomersController),
}.GetHttpConfiguration();
config.EnableCaseInsensitive(caseInsensitive);
config.EnableUnqualifiedNameCall(unqualifiedNameCall);
config.MapODataServiceRoute("odata", "odata", model);
return config;
}
示例3: DefaultResolver_DoesnotWorks_UnqualifiedNameTemplate
public void DefaultResolver_DoesnotWorks_UnqualifiedNameTemplate()
{
// Arrange
IEdmModel model = GetEdmModel();
HttpConfiguration config = new[] { typeof(ParserExtenstionCustomers2Controller) }.GetHttpConfiguration();
config.EnableUnqualifiedNameCall(false);
config.MapODataServiceRoute("odata", "odata", model);
HttpClient client = new HttpClient(new HttpServer(config));
// Act
HttpRequestMessage request = new HttpRequestMessage(
HttpMethod.Get,
"http://localhost/odata/ParserExtenstionCustomers2");
// Assert
Assert.Throws<InvalidOperationException>(() => client.SendAsync(request).Result);
}