|
247 | 247 | <param name="allowBlankPassword"> |
248 | 248 | <see langword="true" /> to indicate that a blank password is allowed; otherwise, <see langword="false" />.</param> |
249 | 249 | <summary>Initializes a new instance of the <see langword="DBDataPermission" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" /> value, and a value indicating whether a blank password is allowed.</summary> |
250 | | - <remarks> |
251 | | - <format type="text/markdown"><![CDATA[ |
252 | | -
|
253 | | -## Remarks |
254 | | - The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword*> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password. |
255 | | -
|
256 | | - ]]></format> |
257 | | - </remarks> |
| 250 | + <remarks>To be added.</remarks> |
258 | 251 | <related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related> |
259 | 252 | </Docs> |
260 | 253 | </Member> |
|
298 | 291 | <param name="restrictions">String that identifies connection string parameters that are allowed or disallowed.</param> |
299 | 292 | <param name="behavior">One of the <see cref="T:System.Data.KeyRestrictionBehavior" /> properties.</param> |
300 | 293 | <summary>Adds access for the specified connection string to the existing state of the <see langword="DBDataPermission" />.</summary> |
301 | | - <remarks> |
302 | | - <format type="text/markdown"><![CDATA[ |
303 | | -
|
304 | | -## Remarks |
305 | | - This method can be useful when implementing: |
306 | | -
|
307 | | -- A .NET framework data provider. |
308 | | -
|
309 | | -- An API that must assert for data access permission. |
310 | | -
|
311 | | -- An administrative tool or installation program that must modify security policy. |
312 | | -
|
313 | | -- When more than one rule is specified, the more restrictive rule is selected. |
314 | | -
|
315 | | - ]]></format> |
316 | | - </remarks> |
| 294 | + <remarks>To be added.</remarks> |
317 | 295 | <related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related> |
318 | 296 | </Docs> |
319 | 297 | </Member> |
|
351 | 329 | <summary>Gets a value indicating whether a blank password is allowed.</summary> |
352 | 330 | <value> |
353 | 331 | <see langword="true" /> if a blank password is allowed, otherwise, <see langword="false" />.</value> |
354 | | - <remarks> |
355 | | - <format type="text/markdown"><![CDATA[ |
356 | | -
|
357 | | -## Remarks |
358 | | - The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword*> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password. |
359 | | -
|
360 | | - ]]></format> |
361 | | - </remarks> |
| 332 | + <remarks>To be added.</remarks> |
362 | 333 | <related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related> |
363 | 334 | </Docs> |
364 | 335 | </Member> |
|
433 | 404 | <Docs> |
434 | 405 | <summary>Creates and returns an identical copy of the current permission object.</summary> |
435 | 406 | <returns>A copy of the current permission object.</returns> |
436 | | - <remarks> |
437 | | - <format type="text/markdown"><![CDATA[ |
438 | | -
|
439 | | -## Remarks |
440 | | - A copy of a permission object represents the same access to resources as the original permission object. |
441 | | -
|
442 | | - ]]></format> |
443 | | - </remarks> |
| 407 | + <remarks>To be added.</remarks> |
444 | 408 | <related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related> |
445 | 409 | </Docs> |
446 | 410 | </Member> |
|
518 | 482 | <Docs> |
519 | 483 | <param name="securityElement">The XML encoding to use to reconstruct the security object.</param> |
520 | 484 | <summary>Reconstructs a security object with a specified state from an XML encoding.</summary> |
521 | | - <remarks> |
522 | | - <format type="text/markdown"><![CDATA[ |
523 | | -
|
524 | | -## Remarks |
525 | | - Custom code that extends security objects needs to implement the `ToXml` and `FromXml` methods to make the objects security encodable. |
526 | | -
|
527 | | - ]]></format> |
528 | | - </remarks> |
| 485 | + <remarks>To be added.</remarks> |
529 | 486 | <related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related> |
530 | 487 | </Docs> |
531 | 488 | </Member> |
|
566 | 523 | <param name="target">A permission object to intersect with the current permission object. It must be of the same type as the current permission object.</param> |
567 | 524 | <summary>Returns a new permission object representing the intersection of the current permission object and the specified permission object.</summary> |
568 | 525 | <returns>A new permission object that represents the intersection of the current permission object and the specified permission object. This new permission object is a null reference (<see langword="Nothing" /> in Visual Basic) if the intersection is empty.</returns> |
569 | | - <remarks> |
570 | | - <format type="text/markdown"><![CDATA[ |
571 | | -
|
572 | | -## Remarks |
573 | | - The intersection of two permissions is a permission that describes the set of operations they both describe. Only a demand that passes both original permissions will pass the intersection. |
574 | | -
|
575 | | - ]]></format> |
576 | | - </remarks> |
| 526 | + <remarks>To be added.</remarks> |
577 | 527 | <exception cref="T:System.ArgumentException">The <paramref name="target" /> parameter is not a null reference (<see langword="Nothing" /> in Visual Basic) and is not an instance of the same class as the current permission object.</exception> |
578 | 528 | <related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related> |
579 | 529 | </Docs> |
|
616 | 566 | <summary>Returns a value indicating whether the current permission object is a subset of the specified permission object.</summary> |
617 | 567 | <returns> |
618 | 568 | <see langword="true" /> if the current permission object is a subset of the specified permission object, otherwise <see langword="false" />.</returns> |
619 | | - <remarks> |
620 | | - <format type="text/markdown"><![CDATA[ |
621 | | -
|
622 | | -## Remarks |
623 | | - The current permission object is a subset of the specified permission object if the current permission object specifies a set of operations that is wholly contained by the specified permission object. For example, a permission that represents access to C:\example.txt is a subset of a permission that represents access to C:\\. If this method returns `true`, the current permission object represents no more access to the protected resource than does the specified permission object. |
624 | | -
|
625 | | - ]]></format> |
626 | | - </remarks> |
| 569 | + <remarks>To be added.</remarks> |
627 | 570 | <exception cref="T:System.ArgumentException">The <paramref name="target" /> parameter is an object that is not of the same type as the current permission object.</exception> |
628 | 571 | <related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related> |
629 | 572 | </Docs> |
|
704 | 647 | <Docs> |
705 | 648 | <summary>Creates an XML encoding of the security object and its current state.</summary> |
706 | 649 | <returns>An XML encoding of the security object, including any state information.</returns> |
707 | | - <remarks> |
708 | | - <format type="text/markdown"><![CDATA[ |
709 | | -
|
710 | | -## Remarks |
711 | | - Custom code that extends security objects must implement the <xref:System.Data.Common.DBDataPermission.ToXml*> and <xref:System.Data.Common.DBDataPermission.FromXml*> methods to make the objects security encodable. |
712 | | -
|
713 | | - ]]></format> |
714 | | - </remarks> |
| 650 | + <remarks>To be added.</remarks> |
715 | 651 | <related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related> |
716 | 652 | </Docs> |
717 | 653 | </Member> |
|
752 | 688 | <param name="target">A permission object to combine with the current permission object. It must be of the same type as the current permission object.</param> |
753 | 689 | <summary>Returns a new permission object that is the union of the current and specified permission objects.</summary> |
754 | 690 | <returns>A new permission object that represents the union of the current permission object and the specified permission object.</returns> |
755 | | - <remarks> |
756 | | - <format type="text/markdown"><![CDATA[ |
757 | | -
|
758 | | -## Remarks |
759 | | - The result of a call to <xref:System.Data.Common.DBDataPermission.Union*> is a permission that represents all the operations permitted by both the current permission object and the specified permission object. Any demand that passes either permission passes their union. |
760 | | -
|
761 | | - ]]></format> |
762 | | - </remarks> |
| 691 | + <remarks>To be added.</remarks> |
763 | 692 | <exception cref="T:System.ArgumentException">The <paramref name="target" /> object is not the same type as the current permission object.</exception> |
764 | 693 | <related type="Article" href="/dotnet/framework/data/adonet/ado-net-overview">ADO.NET Overview</related> |
765 | 694 | </Docs> |
|
0 commit comments