Show / Hide Table of Contents

    Class Package

    Represents a package used to compose the SDK

    Inheritance
    Object
    Package
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Sentry.Protocol
    Assembly: Sentry.Protocol.dll
    Syntax
    [DataContract]
    public class Package

    Constructors

    | Improve this Doc View Source

    Package(String, String)

    Creates a new instance of a Package

    Declaration
    public Package(string name, string version)
    Parameters
    Type Name Description
    String name

    The package name.

    String version

    The package version.

    Properties

    | Improve this Doc View Source

    Name

    The name of the package

    Declaration
    [DataMember(Name = "name", EmitDefaultValue = false)]
    public string Name { get; }
    Property Value
    Type Description
    String
    Examples

    nuget:Sentry nuget:Sentry.AspNetCore

    | Improve this Doc View Source

    Version

    The version of the package

    Declaration
    [DataMember(Name = "version", EmitDefaultValue = false)]
    public string Version { get; }
    Property Value
    Type Description
    String
    Examples

    1.0.0-rc1

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX