364 lines
18 KiB
XML
364 lines
18 KiB
XML
|
<?xml version="1.0"?>
|
||
|
<doc>
|
||
|
<assembly>
|
||
|
<name>Portoa</name>
|
||
|
</assembly>
|
||
|
<members>
|
||
|
<member name="M:Portoa.Util.LinqExtensions.Implode``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.String},System.String)">
|
||
|
<summary>
|
||
|
Implodes an enumeration given a selector function and a separator
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Util.LinqExtensions.Walk``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
|
||
|
<summary>
|
||
|
Performs the specified action on each item in the collection. The action will execute immediately.
|
||
|
Use <c cref="M:Portoa.Util.LinqExtensions.WalkDeferred``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">WalkDeferred</c> if deferred execution is needed.
|
||
|
</summary>
|
||
|
<seealso cref="M:Portoa.Util.LinqExtensions.WalkDeferred``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})"/>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Util.LinqExtensions.WalkDeferred``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
|
||
|
<summary>
|
||
|
Performs the specified action on each item in the collection. The action will not execute until the collection
|
||
|
is enumerated. Use <c cref="M:Portoa.Util.LinqExtensions.Walk``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">Walk</c> if deferred execution is not needed.
|
||
|
</summary>
|
||
|
<seealso cref="M:Portoa.Util.LinqExtensions.Walk``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})"/>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.LocalizationRequiredAttribute">
|
||
|
<summary>
|
||
|
Indicates that marked element should be localized or not.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:JetBrains.Annotations.LocalizationRequiredAttribute.#ctor(System.Boolean)">
|
||
|
<summary>
|
||
|
Initializes a new instance of the <see cref="T:JetBrains.Annotations.LocalizationRequiredAttribute"/> class.
|
||
|
</summary>
|
||
|
<param name="required"><c>true</c> if a element should be localized; otherwise, <c>false</c>.</param>
|
||
|
</member>
|
||
|
<member name="M:JetBrains.Annotations.LocalizationRequiredAttribute.Equals(System.Object)">
|
||
|
<summary>
|
||
|
Returns whether the value of the given object is equal to the current <see cref="T:JetBrains.Annotations.LocalizationRequiredAttribute"/>.
|
||
|
</summary>
|
||
|
<param name="obj">The object to test the value equality of. </param>
|
||
|
<returns>
|
||
|
<c>true</c> if the value of the given object is equal to that of the current; otherwise, <c>false</c>.
|
||
|
</returns>
|
||
|
</member>
|
||
|
<member name="M:JetBrains.Annotations.LocalizationRequiredAttribute.GetHashCode">
|
||
|
<summary>
|
||
|
Returns the hash code for this instance.
|
||
|
</summary>
|
||
|
<returns>A hash code for the current <see cref="T:JetBrains.Annotations.LocalizationRequiredAttribute"/>.</returns>
|
||
|
</member>
|
||
|
<member name="P:JetBrains.Annotations.LocalizationRequiredAttribute.Required">
|
||
|
<summary>
|
||
|
Gets a value indicating whether a element should be localized.
|
||
|
<value><c>true</c> if a element should be localized; otherwise, <c>false</c>.</value>
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.StringFormatMethodAttribute">
|
||
|
<summary>
|
||
|
Indicates that marked method builds string by format pattern and (optional) arguments.
|
||
|
Parameter, which contains format string, should be given in constructor.
|
||
|
The format string should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/> -like form
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:JetBrains.Annotations.StringFormatMethodAttribute.#ctor(System.String)">
|
||
|
<summary>
|
||
|
Initializes new instance of StringFormatMethodAttribute
|
||
|
</summary>
|
||
|
<param name="formatParameterName">Specifies which parameter of an annotated method should be treated as format-string</param>
|
||
|
</member>
|
||
|
<member name="P:JetBrains.Annotations.StringFormatMethodAttribute.FormatParameterName">
|
||
|
<summary>
|
||
|
Gets format parameter name
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.InvokerParameterNameAttribute">
|
||
|
<summary>
|
||
|
Indicates that the function argument should be string literal and match one of the parameters of the caller function.
|
||
|
For example, <see cref="T:System.ArgumentNullException"/> has such parameter.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.AssertionMethodAttribute">
|
||
|
<summary>
|
||
|
Indicates that the marked method is assertion method, i.e. it halts control flow if one of the conditions is satisfied.
|
||
|
To set the condition, mark one of the parameters with <see cref="T:JetBrains.Annotations.AssertionConditionAttribute"/> attribute
|
||
|
</summary>
|
||
|
<seealso cref="T:JetBrains.Annotations.AssertionConditionAttribute"/>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.AssertionConditionAttribute">
|
||
|
<summary>
|
||
|
Indicates the condition parameter of the assertion method.
|
||
|
The method itself should be marked by <see cref="T:JetBrains.Annotations.AssertionMethodAttribute"/> attribute.
|
||
|
The mandatory argument of the attribute is the assertion type.
|
||
|
</summary>
|
||
|
<seealso cref="T:JetBrains.Annotations.AssertionConditionType"/>
|
||
|
</member>
|
||
|
<member name="M:JetBrains.Annotations.AssertionConditionAttribute.#ctor(JetBrains.Annotations.AssertionConditionType)">
|
||
|
<summary>
|
||
|
Initializes new instance of AssertionConditionAttribute
|
||
|
</summary>
|
||
|
<param name="conditionType">Specifies condition type</param>
|
||
|
</member>
|
||
|
<member name="P:JetBrains.Annotations.AssertionConditionAttribute.ConditionType">
|
||
|
<summary>
|
||
|
Gets condition type
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.AssertionConditionType">
|
||
|
<summary>
|
||
|
Specifies assertion type. If the assertion method argument satisifes the condition, then the execution continues.
|
||
|
Otherwise, execution is assumed to be halted
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:JetBrains.Annotations.AssertionConditionType.IS_TRUE">
|
||
|
<summary>
|
||
|
Indicates that the marked parameter should be evaluated to true
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:JetBrains.Annotations.AssertionConditionType.IS_FALSE">
|
||
|
<summary>
|
||
|
Indicates that the marked parameter should be evaluated to false
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:JetBrains.Annotations.AssertionConditionType.IS_NULL">
|
||
|
<summary>
|
||
|
Indicates that the marked parameter should be evaluated to null value
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:JetBrains.Annotations.AssertionConditionType.IS_NOT_NULL">
|
||
|
<summary>
|
||
|
Indicates that the marked parameter should be evaluated to not null value
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.TerminatesProgramAttribute">
|
||
|
<summary>
|
||
|
Indicates that the marked method unconditionally terminates control flow execution.
|
||
|
For example, it could unconditionally throw exception
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.CanBeNullAttribute">
|
||
|
<summary>
|
||
|
Indicates that the value of marked element could be <c>null</c> sometimes, so the check for <c>null</c> is necessary before its usage
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.NotNullAttribute">
|
||
|
<summary>
|
||
|
Indicates that the value of marked element could never be <c>null</c>
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.CannotApplyEqualityOperatorAttribute">
|
||
|
<summary>
|
||
|
Indicates that the value of marked type (or its derivatives) cannot be compared using '==' or '!=' operators.
|
||
|
There is only exception to compare with <c>null</c>, it is permitted
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.BaseTypeRequiredAttribute">
|
||
|
<summary>
|
||
|
When applied to target attribute, specifies a requirement for any type which is marked with
|
||
|
target attribute to implement or inherit specific type or types
|
||
|
</summary>
|
||
|
<example>
|
||
|
<code>
|
||
|
[BaseTypeRequired(typeof(IComponent)] // Specify requirement
|
||
|
public class ComponentAttribute : Attribute
|
||
|
{}
|
||
|
|
||
|
[Component] // ComponentAttribute requires implementing IComponent interface
|
||
|
public class MyComponent : IComponent
|
||
|
{}
|
||
|
</code>
|
||
|
</example>
|
||
|
</member>
|
||
|
<member name="M:JetBrains.Annotations.BaseTypeRequiredAttribute.#ctor(System.Type[])">
|
||
|
<summary>
|
||
|
Initializes new instance of BaseTypeRequiredAttribute
|
||
|
</summary>
|
||
|
<param name="baseTypes">Specifies which types are required</param>
|
||
|
</member>
|
||
|
<member name="P:JetBrains.Annotations.BaseTypeRequiredAttribute.BaseTypes">
|
||
|
<summary>
|
||
|
Gets enumerations of specified base types
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.UsedImplicitlyAttribute">
|
||
|
<summary>
|
||
|
Indicates that the marked symbol is used implicitly (e.g. via reflection, in external library),
|
||
|
so this symbol will not be marked as unused (as well as by other usage inspections)
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:JetBrains.Annotations.UsedImplicitlyAttribute.TargetFlags">
|
||
|
<summary>
|
||
|
Gets value indicating what is meant to be used
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.MeansImplicitUseAttribute">
|
||
|
<summary>
|
||
|
Should be used on attributes and causes ReSharper to not mark symbols marked with such attributes as unused (as well as by other usage inspections)
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:JetBrains.Annotations.MeansImplicitUseAttribute.TargetFlags">
|
||
|
<summary>
|
||
|
Gets value indicating what is meant to be used
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Access">
|
||
|
<summary>
|
||
|
Only entity marked with attribute considered used
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Assign">
|
||
|
<summary>
|
||
|
Indicates implicit assignment to a member
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Instantiated">
|
||
|
<summary>
|
||
|
Indicates implicit instantiation of a type
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:JetBrains.Annotations.ImplicitUseTargetFlags">
|
||
|
<summary>
|
||
|
Specify what is considered used implicitly when marked with <see cref="T:JetBrains.Annotations.MeansImplicitUseAttribute"/> or <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.Members">
|
||
|
<summary>
|
||
|
Members of entity marked with attribute are considered used
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.WithMembers">
|
||
|
<summary>
|
||
|
Entity marked with attribute and all its members considered used
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Portoa.Validation.DataAnnotations.GreaterThanZeroAttribute">
|
||
|
<summary>
|
||
|
Validates that the value is greater than zero
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Util.ReflectionExtensions.GetFriendlyName(System.Type,System.Boolean)">
|
||
|
<summary>
|
||
|
Gets a human-readable string representing the given type
|
||
|
</summary>
|
||
|
<parparam name="fullyQualified">Whether to use the fully qualified name of each type</parparam>
|
||
|
</member>
|
||
|
<member name="T:Portoa.Persistence.IUnitOfWork">
|
||
|
<summary>
|
||
|
Represents a transaction
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Persistence.IUnitOfWork.Start">
|
||
|
<summary>
|
||
|
Starts a transaction
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Persistence.IUnitOfWork.Commit">
|
||
|
<summary>
|
||
|
Commits a transaction
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Persistence.IUnitOfWork.Rollback">
|
||
|
<summary>
|
||
|
Rolls back a transaction
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Testing.DbTestingUtility.DropDatabase">
|
||
|
<summary>
|
||
|
Drops the temp database and resets the generated database name
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Testing.DbTestingUtility.CreateDatabase">
|
||
|
<summary>
|
||
|
Creates a temporary database with a unique name
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Testing.DbTestingUtility.RunSqlScript(Portoa.Testing.ISqlScript)">
|
||
|
<summary>
|
||
|
Executes a SQL script on the test database
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Portoa.Testing.DbTestingUtility.ConnectionString">
|
||
|
<summary>
|
||
|
Gets the connection string for the fake database
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="P:Portoa.Testing.DbTestingUtility.DefaultConnectionString">
|
||
|
<summary>
|
||
|
Sets the default connection string (do not include the initial catalog)
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Portoa.Persistence.IRepository`1">
|
||
|
<summary>
|
||
|
Provides a CRUD interface to a persistence medium for entities that have an
|
||
|
integral identifier
|
||
|
</summary>
|
||
|
<typeparam name="T">The entity's type</typeparam>
|
||
|
</member>
|
||
|
<member name="T:Portoa.Persistence.IRepository`2">
|
||
|
<summary>
|
||
|
Provides a CRUD interface to a persistence medium
|
||
|
</summary>
|
||
|
<typeparam name="T">The entity's type</typeparam>
|
||
|
<typeparam name="TId">The entity identifier's type</typeparam>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Persistence.IRepository`2.Save(`0)">
|
||
|
<summary>
|
||
|
Persists an entity (inserts or updates)
|
||
|
</summary>
|
||
|
<param name="entity">The entity to save</param>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Persistence.IRepository`2.Reload(`0)">
|
||
|
<summary>
|
||
|
Reloads an entity from the persistence medium
|
||
|
</summary>
|
||
|
<param name="entity">The entity to reload</param>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Persistence.IRepository`2.Delete(`1)">
|
||
|
<summary>
|
||
|
Deletes an entity
|
||
|
</summary>
|
||
|
<param name="id">The unique identifier of the entity to delete</param>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Persistence.IRepository`2.FindById(`1)">
|
||
|
<summary>
|
||
|
Finds an entity by its unique identifier
|
||
|
</summary>
|
||
|
<param name="id">The unique identifier of the entity to locate</param>
|
||
|
<exception cref="T:Portoa.Persistence.EntityNotFoundException`2"/>
|
||
|
</member>
|
||
|
<member name="P:Portoa.Persistence.IRepository`2.Records">
|
||
|
<summary>
|
||
|
Equivalent of "select *"
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Portoa.Validation.DataAnnotations.Validator">
|
||
|
<summary>
|
||
|
TODO: add reflection cache
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Validation.DataAnnotations.Validator.TryValidateObject(System.Object,System.ComponentModel.DataAnnotations.ValidationContext,System.Collections.Generic.ICollection{System.ComponentModel.DataAnnotations.ValidationResult},System.Boolean)">
|
||
|
<summary>
|
||
|
Extension to System.ComponentModel.DataAnnotations.Validator.TryValidateObject(). This method validates
|
||
|
the object, its properties and its fields.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Portoa.Validation.DataAnnotations.EmailAttribute">
|
||
|
<summary>
|
||
|
Validates that a string is a valid email address. Set AllowEmpty to true
|
||
|
if null and empty strings should not be validated.
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="M:Portoa.Logging.LoggingExtensions.IsLoggable(System.Reflection.ICustomAttributeProvider)">
|
||
|
<summary>
|
||
|
Determines if this object should be logged
|
||
|
</summary>
|
||
|
</member>
|
||
|
<member name="T:Portoa.Logging.DoNotLogAttribute">
|
||
|
<summary>
|
||
|
Signifies that this object should not be logged
|
||
|
</summary>
|
||
|
</member>
|
||
|
</members>
|
||
|
</doc>
|