Implemented interface member:
39 references to Remove
aspire (2)
Configuration\ConfigurationService.cs (2)
205currentObject.Remove(finalKey); 215parentObject.Remove(parentKey);
Aspire.Hosting (1)
Devcontainers\DevcontainerSettingsWriter.cs (1)
115portsAttributes.Remove(oldPort);
Aspire.Hosting.Yarp (2)
YarpJsonConfigGeneratorBuilder.cs (2)
101node?.AsObject().Remove(nameof(RouteConfig.RouteId)); 115node?.AsObject().Remove(nameof(ClusterConfig.ClusterId));
ConfigurationSchemaGenerator (4)
ConfigSchemaEmitter.cs (4)
166currentNode.Remove(propertiesName); 170propertiesNode.Remove(pathSegment); 266currentNode.Remove("properties"); 338parentNode.Remove(name);
dotnet-user-jwts (1)
Helpers\JwtAuthenticationSchemeSettings.cs (1)
73schemes.Remove(name);
Microsoft.AspNetCore.Identity.Test (23)
Passkeys\PasskeyHandlerAssertionTest.cs (10)
39Assert.True(credentialJson.Remove("id")); 90Assert.True(credentialJson.Remove("type")); 139Assert.True(credentialJson.Remove("response")); 173Assert.True(originalOptionsJson.Remove("challenge")); 208Assert.True(response.Remove("clientDataJSON")); 258Assert.True(response.Remove("authenticatorData")); 325Assert.True(response.Remove("signature")); 459Assert.True(clientDataJson.Remove("type")); 511Assert.True(clientDataJson.Remove("challenge")); 594Assert.True(clientDataJson.Remove("origin"));
Passkeys\PasskeyHandlerAttestationTest.cs (13)
39Assert.True(credentialJson.Remove("id")); 90Assert.True(credentialJson.Remove("type")); 139Assert.True(credentialJson.Remove("response")); 174Assert.True(user.Remove("id")); 209Assert.True(user.Remove("name")); 244Assert.True(user.Remove("displayName")); 278Assert.True(attestationStateJson.Remove("userEntity")); 294Assert.True(attestationStateJson.Remove("challenge")); 329Assert.True(response.Remove("clientDataJSON")); 379Assert.True(response.Remove("attestationObject")); 428Assert.True(clientDataJson.Remove("type")); 480Assert.True(clientDataJson.Remove("challenge")); 563Assert.True(clientDataJson.Remove("origin"));
Microsoft.AspNetCore.JsonPatch.SystemTextJson (1)
Internal\JsonObjectAdapter.cs (1)
57if (!obj.Remove(segment))
Microsoft.Extensions.AI.Abstractions (3)
Utilities\AIJsonUtilities.Schema.Create.cs (2)
318_ = obj.Remove(PatternPropertyName); 696jsonObject.Remove(key);
Utilities\AIJsonUtilities.Schema.Transform.cs (1)
186_ = schemaObj.Remove(DefaultPropertyName);
Microsoft.Extensions.AI.OpenAI (1)
OpenAIClientExtensions.cs (1)
76_ = schemaObj.Remove(propName);
System.Text.Json (1)
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
201bool ICollection<KeyValuePair<string, JsonNode?>>.Remove(KeyValuePair<string, JsonNode?> item) => Remove(item.Key);