Skip to content

Server APIs – Aras.Server.Core.AccessControl

Eric Domke edited this page Apr 6, 2020 · 1 revision

Aras.Server.Core v12.0.0.17204

EnvironmentAttribute Class

Inheritance objectEnvironmentAttribute

public sealed class EnvironmentAttribute
{

  // Properties
  public Type DotNetType { get; }
  public string Name { get; }

  // Methods
  public void SetValue(object value);
}

EnvironmentAttributeEvaluationException Class

Inheritance objectExceptionEnvironmentAttributeEvaluationException

Attributes Serializable


[Serializable()]
public sealed class EnvironmentAttributeEvaluationException : Exception
{
  // Constructors
  public EnvironmentAttributeEvaluationException();
  public EnvironmentAttributeEvaluationException(string message);
  public EnvironmentAttributeEvaluationException(string message, Exception innerException);

  // Properties
  public string EnvironmentAttributeName { get; }

  // Methods
  public void GetObjectData(SerializationInfo info, StreamingContext context);
}

EnvironmentAttributeExecutionContext Class

Inheritance objectEnvironmentAttributeExecutionContext

public class EnvironmentAttributeExecutionContext
{
  // Constructors
  public EnvironmentAttributeExecutionContext();
}

IEnvironmentAttributeMethod Interface

public interface IEnvironmentAttributeMethod
{

  // Methods
  public void Execute(EnvironmentAttribute attribute, EnvironmentAttributeExecutionContext context);
}

InvalidEnvironmentAttributeTypeException Class

Inheritance objectExceptionInvalidEnvironmentAttributeTypeException

Attributes Serializable


[Serializable()]
public sealed class InvalidEnvironmentAttributeTypeException : Exception
{
  // Constructors
  public InvalidEnvironmentAttributeTypeException();
  public InvalidEnvironmentAttributeTypeException(string message);
  public InvalidEnvironmentAttributeTypeException(string message, Exception innerException);
}
Clone this wiki locally